Created
February 27, 2023 08:20
-
-
Save ovitente/b313e63c3e79d8f96e8ea667d7e71e0f to your computer and use it in GitHub Desktop.
remove audio line from video file
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
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