How to convert flv to mp4 with ffmpeg?

How to convert a video file in format as flv to mp4 with ffmpeg?

You may use method from here: https://www.systutorials.com/3540/converting-video-files-for-ipod-iphone-ipad/

ffmpeg -i input.flv output.mp4

Or by specifying more details about how to handling the codecs:

ffmpeg -i input.flv -vcodec copy -acodec copy output.mp4

You may also add more options as you like. For more, check the ffmpeg manual: https://www.systutorials.com/docs/linux/man/1-ffmpeg/

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

Leave a Reply

Your email address will not be published. Required fields are marked *