Hello all, I can't seem to get this to load, please help:
ExecuteFile>%ffmpeg%, -i "%Temp%" -crf "22" -c:a "copy" -pix_fmt "yuv420p" -an -vf "crop=iw-128:ih-64:32:16,scale=1280:720" -r "29.97" -ss %sstart% -t "00:02:00" "C:\upload\%loop%-test.mp4"
I figured it's my comma between: -64:32:16,scale=1
how do I pass the comma as well?
executefile multiple parameters
Moderators: JRL, Dorian (MJT support)
Re: executefile multiple parameters
Newer versions have a built in variable "comma" older versions (and all versions) can do:
Code: Select all
Let>comma=,
ExecuteFile>%ffmpeg%, -i "%Temp%" -crf "22" -c:a "copy" -pix_fmt "yuv420p" -an -vf "crop=iw-128:ih-64:32:16%comma%scale=1280:720" -r "29.97" -ss %sstart% -t