ffmpeg/mencoder help

mylikes786

Registered Member
Joined
Oct 31, 2013
Messages
81
Reaction score
7
Hello All,

I am using this script for watermark on video

<?php
exec('mencoder vid.mp4 -o b.mp4 -ovc -oac xvid -xvidencopts fixed_quant=7 pcm -sub "mark.srt" -font "verdana.ttf" -subpos 98');
?>

But it change quality of video, I dont want change anything in video like quality, audio bit rate etc. I just want that script for watermark..

Please tell me how can i do this.
frown.png


Thanks in advance
 
Last edited:
try
Code:
[FONT=Consolas] -ovc xvid -oac copy[/FONT]
 
Back
Top