Skip to content

Instantly share code, notes, and snippets.

@abhishek77in
Last active December 11, 2015 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhishek77in/4604620 to your computer and use it in GitHub Desktop.
Save abhishek77in/4604620 to your computer and use it in GitHub Desktop.
Convert video from MP4 format to FLV format.

Convert video from MP4 format to FLV format

$brew install ffmpeg
$ffmpeg -i input_file.mp4 -f flv output.flv
  • ffmpeg - runs the program
  • -i input_file.mp4 - input file
  • -f flv - force format followed by format
  • output.flv - output file

source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment