Hey shaharb,
welcome to the forum and thank you for using FFAStrans!
I was not aware that ffmpeg supports SHQ, interesting.
Unfortunately there is nothing built in for you so you have 2 options:
1) commandline executor
2) custom ffmpeg
For using custom ffmpeg, the Input "FFmpeg options:" must be filled with exactly the same that you would give ffmpeg on a commandline except the -i portion and the output.
E.g. if you can produce your output using ffmpeg on commandline, and your command looks like this:
ffmpeg -i c:\temp\input.ext
-c:v yourcodec -b:v 100M -map 0 -sn youroutputfile.avi
You would copy the
bold part of the command into the FFmpeg options field.
When using a commandline processor instead, you do like this:
Code: Select all
cmd /C ""%s_ffmpeg%" -i "%s_source%" -c:v yourcodec -b:v bitrate "c:\path_to\output.avi""