Skip to content

Instantly share code, notes, and snippets.

@greg-randall
Created October 13, 2020 13:52
Show Gist options
  • Select an option

  • Save greg-randall/00cc2fb7e1650499e2be20ede5db1b67 to your computer and use it in GitHub Desktop.

Select an option

Save greg-randall/00cc2fb7e1650499e2be20ede5db1b67 to your computer and use it in GitHub Desktop.
Strip strip audio from a whole folder of video. Very useful for b-roll shoots.
mkdir no-audio; for f in *.MP4; do ffmpeg -i "$f" -an -c:v copy no-audio/$f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment