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.

 

Go Back   Doom9's Forum > Video Encoding > MPEG-4 Encoder GUIs

Reply
 
Thread Tools Search this Thread Display Modes
Old 18th October 2017, 11:57   #1  |  Link
Freedom
Registered User
 
Join Date: Oct 2017
Posts: 3
Pazera Free MP4 Video Converter

Hi, I need help with software -
Code:
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:

but command is invalid
I need help
Cheers
Freedom is offline   Reply With Quote
Old 18th October 2017, 12:30   #2  |  Link
sneaker_ger
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.
sneaker_ger is offline   Reply With Quote
Old 18th October 2017, 13:19   #3  |  Link
Freedom
Registered User
 
Join Date: Oct 2017
Posts: 3
Pazera Free MP4 Video Converter

Hi, it doesnt work
ffmpeg_full_help from pazera directory:
Code:
https://pastebin.com/x7iXVADF
Freedom is offline   Reply With Quote
Old 20th October 2017, 12:08   #4  |  Link
Gravitator
Registered User
 
Join Date: May 2014
Posts: 292
Хай.
Did you try to talk to the developer?
Gravitator is offline   Reply With Quote
Old 22nd October 2017, 18:05   #5  |  Link
Freedom
Registered User
 
Join Date: Oct 2017
Posts: 3
...

Hi, yes of course by mail, but no answear.
Anyone can help? There is portable version, so You dont need install software
Freedom is offline   Reply With Quote
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
Reply

Tags
converter, mkv, mp4, pazera, video

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:04.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.