Quote:
Originally Posted by raymor
You CAN convert your flv to mp4 with no loss of quality. Because flv video is nothing more than a package holding mpeg4 inside, you can strip off the flv package and be left with raw mpeg4, aka .mp4.
To do using ffmpeg:
ffmpeg -i "filename.flv" -vcodec copy -acodec copy "filename.mp4"
The magic is the "copy" part, which tells ffmpeg to just copy the video and audio with reencoding it. Once you have plain mpeg4, most anything will play play it because again all of the popular formats are packages for mpeg4, so most any player already knows how to play mpeg4 after unpacking it.
|
WRONG WRONG WRONG.. I know you're a smart guy, but, while true that flv is just the container, the videos are encoded to H.263 and usually mp3 audio. The "mp4" videos most people talk about these days are encoded with H.264 with AAC. mp4 is also a contained and could contain mpeg4 encoded videos.