Skip to content

Instantly share code, notes, and snippets.

@WeiChiaChang
Forked from ansonparker/gist:1228449
Created September 18, 2019 04:46
Show Gist options
  • Save WeiChiaChang/c2c7e39b20df1d16a45e8fd5b5abe9fd to your computer and use it in GitHub Desktop.
Save WeiChiaChang/c2c7e39b20df1d16a45e8fd5b5abe9fd to your computer and use it in GitHub Desktop.
Lossless FLV to MP4 conversion
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