-
-
Save WeiChiaChang/c2c7e39b20df1d16a45e8fd5b5abe9fd to your computer and use it in GitHub Desktop.
Lossless FLV to MP4 conversion
This file contains hidden or 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