Created
September 20, 2011 05:48
-
-
Save ansonparker/1228449 to your computer and use it in GitHub Desktop.
Lossless FLV to MP4 conversion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open command prompt (Terminal) and run: | |
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). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For windows
start "" "ffmpeg.exe" -i "filename.flv" -vcodec copy -acodec copy "filename.mp4"