Skip to content

Instantly share code, notes, and snippets.

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