View Single Post
Old 8th November 2017, 07:19   #6  |  Link
therube
Registered User
 
Join Date: Aug 2013
Posts: 191
In the Additional parameters box, you would want something like this:

-i C:\DOC\watermark.jpg -filter_complex "overlay=10:10"


F2 will give you the command line of what you are trying to run.


As I see it, when you are adding parameters, you aren't able to determine where they get added in the command line (sequence), & in this case, they're being added in the wrong place, so the conversion (parsing of the command-line) fails.


Pazera gives you something like:

ffmpeg.exe -y -i "in.avi" -c:v libx264 -r 23.976 -b:v 1694k -threads 2 -preset:v fast -sn -c:a aac -b:a 160k -async 1 -i C:\DOC\watermark.jpg -filter_complex "overlay=10:10" -f mp4 output.mp4

What you need is something (rearranged) like:

ffmpeg.exe -y -i "in.avi" -i C:\DOC\watermark.jpg -filter_complex "overlay=10:10" -c:v libx264 -r 23.976 -b:v 1694k -threads 2 -preset:v fast -sn -c:a aac -b:a 160k -async 1 -f mp4 output.mp4


Not sure how to cause that to happen, in a meaningful way, in Pazera?

Last edited by therube; 8th November 2017 at 07:24.
therube is offline   Reply With Quote