Skip to content

Instantly share code, notes, and snippets.

@geekwolverine
Forked from abhishek77in/convert_flv_to_mp4.md
Created February 4, 2025 12:21
Show Gist options
  • Save geekwolverine/c785829e00211af339af36a932bac709 to your computer and use it in GitHub Desktop.
Save geekwolverine/c785829e00211af339af36a932bac709 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