You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking to make a script with a basic for loop that iterates through a folder using user presets. Right now it seems to be bypassing the "--preset -Z" option when using a user preset. Would you be able to tell me what's wrong with this command? Since your app handles user presets pretty well, I thought you could share the way you do it.
Thank you
#!/bin/bash
for file in /Volumes/Medias/To_Compress/To_Do/*
do /Applications/HandBrake.app/Contents/MacOS/HandBrakeCLI -v -i "$file" -o ./Compressed/"$file".converted.mkv -Z "High Profile" ;
done
The text was updated successfully, but these errors were encountered:
Hello,
I'm looking to make a script with a basic for loop that iterates through a folder using user presets. Right now it seems to be bypassing the "--preset -Z" option when using a user preset. Would you be able to tell me what's wrong with this command? Since your app handles user presets pretty well, I thought you could share the way you do it.
Thank you
The text was updated successfully, but these errors were encountered: