Created
February 21, 2024 17:22
-
-
Save Eagle-E/5b4095a60da5299ce229634386ae865f to your computer and use it in GitHub Desktop.
ffmpeg remove audio from video
This file contains 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
input_file=example.mkv | |
output_file=example-nosound.mkv | |
ffmpeg -i $input_file -c copy -an $output_file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment