View Single Post
  #1  
Old 04-28-2010, 07:22 PM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

How to convert FLV to MP4 losslessly with ffmpeg (Windows, Linux, Mac OS)


Open command prompt (Terminal) and run:
Code:
ffmpeg -i "filename.flv" -vcodec copy -acodec copy "filename.mp4"
This will copy video track and audio track from filename.flv to filename.mp4. The operation is lossless (there is no quality loss).
Reply With Quote