Log in

View Full Version : Pazera Free MP4 Video Converter


Freedom
18th October 2017, 11:57
Hi, I need help with software -
http://www.pazera-software.pl/products/mp4-converter/
there are no thread with this one, so I do new, if I do mistake please transfer post.

To the point...
Using FFmpeg in MP4 converter I try do watermark on video:
http://thumbs.imagebam.com/7b/e3/bd/657f92630243833.jpg (http://www.imagebam.com/image/657f92630243833) http://thumbs.imagebam.com/19/fe/84/876445630243893.jpg (http://www.imagebam.com/image/876445630243893)
but command is invalid :(
I need help
Cheers

sneaker_ger
18th October 2017, 12:30
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.

Freedom
18th October 2017, 13:19
Hi, it doesnt work
ffmpeg_full_help from pazera directory:
https://pastebin.com/x7iXVADF

Gravitator
20th October 2017, 12:08
Хай.
Did you try to talk to the developer?

Freedom
22nd October 2017, 18:05
Hi, yes of course by mail, but no answear.
Anyone can help? There is portable version, so You dont need install software :D

therube
8th November 2017, 07:19
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?