Skip to content

Instantly share code, notes, and snippets.

@WANGJIEKE
Created February 1, 2020 22:17
Show Gist options
  • Save WANGJIEKE/ec0c2606cc7ebf22a5e3d33f8991176c to your computer and use it in GitHub Desktop.
Save WANGJIEKE/ec0c2606cc7ebf22a5e3d33f8991176c to your computer and use it in GitHub Desktop.

Revisions

  1. WANGJIEKE created this gist Feb 1, 2020.
    3 changes: 3 additions & 0 deletions flv2mp4.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    for i in *.flv;
    do ffmpeg -i "$i" -c copy "${i%.*}.mp4";
    done