Created
October 13, 2020 13:52
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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