Thread
:
How to convert FLV to MP4 losslessly with ffmpeg (Windows, Linux, Mac OS)
View Single Post
#
1
04-28-2010, 07:22 PM
blimey
Former Member
Join Date: Jul 2006
Posts: 286
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).
blimey
View Public Profile
Find all posts by blimey