Skip to content

Instantly share code, notes, and snippets.

@zh4n7wm
Last active June 16, 2020 07:52
Show Gist options
  • Save zh4n7wm/dfceeff5de406588fd181ae239dda6f5 to your computer and use it in GitHub Desktop.
Save zh4n7wm/dfceeff5de406588fd181ae239dda6f5 to your computer and use it in GitHub Desktop.
ffmpeg tips

extract audio from swf file, then save as mp3 file

$ ffmpeg -i input.swf -acodec copy output.mp3
$ for x in $(ls *.swf); do output=$(echo $x | sed 's/.swf/.mp3/'); ffmpeg -i $x -acodec copy ~/Downloads/nce-flash-01/$output; done

download m3u8 to mp4

$ ffmpeg -i https://media001.geekbang.org/13d6aa3bd2fd4f01a6ebc04771b88f0e/03d3c1eeedcc4854b9b5b5c1a88b8921-a37f6999637db379b3b9c31b62edfdc9-hd.m3u8 -c copy guoyu.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment