Skip to content

Instantly share code, notes, and snippets.

@WANGJIEKE
Created February 1, 2020 22:17
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 WANGJIEKE/ec0c2606cc7ebf22a5e3d33f8991176c to your computer and use it in GitHub Desktop.
Save WANGJIEKE/ec0c2606cc7ebf22a5e3d33f8991176c to your computer and use it in GitHub Desktop.
Convert FLV file to MP4 with FFmpeg
for i in *.flv;
do ffmpeg -i "$i" -c copy "${i%.*}.mp4";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment