Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
18th October 2017, 12:30 | #2 | Link |
Registered User
Join Date: Dec 2002
Posts: 5,565
|
I don't use the software but the box says "Additional ffmpeg command-line parameters". So I assume Pazera creates most of the command itself and you are only to put some extra things in there.
Try only: -i E:\watermark.png -filter_complex overlay=10:10 But: - I have never used overlay filter. Don't know if usage is correct in the first place - I don't know where Pazera will put additional commands. ffmpeg parameter order can be important. |
8th November 2017, 07:19 | #6 | Link |
Registered User
Join Date: Aug 2013
Posts: 203
|
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. |
Tags |
converter, mkv, mp4, pazera, video |
Thread Tools | Search this Thread |
Display Modes | |
|
|