ffmpeg -sameq -i '/var/www/original.flv' -vhook '/usr/lib/vhook/imlib2.so \
       -x 0 -y 0 -i /var/www/watermark.jpg' /var/www/out/after.flv

The watermark.jpg is a small text under 5kb. After i run it, after.flv is 90mb. Original.flv is only 40mb! Why such large difference?

And there is no sound in the after.flv! the video quality is same though! When i dont use -sameq, after.flv is way too small, and video quality is very poor. also without sound!!!!

link|improve this question
It might help if you show us the complete output of ffmpeg. Please edit your question with the ffmpeg output. – Stu Thompson Jan 12 '10 at 18:41
feedback

migrated from stackoverflow.com Sep 13 '10 at 10:19

This question came from our site for professional and enthusiast programmers.

1 Answer

You are not alone.I have the same problem. Maybe it is because of -sameq. You can try -vcodec copy and -acodec copy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown