I want to convert any video to mp4(x264).But codecs of videos which will be processed are different(x264,Xvid,etc.). I want that properties of video which I convert should be same with video which I will convert and I want to not raise video's size.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Use ffmpeg for it. Below statement is just example. And reference this link. http://juliensimon.blogspot.com/2009/01/howto-ffmpeg-x264-presets.html

$ ffmpeg -i [input file] -vcodec libx264 -crf 25 -acodec libfaac -vpre slower [output file]

link|improve this answer
I need to convert videos with embedded subtitle with mencoder. – Ahmet Kapıkıran Jan 20 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.