Skip to content

Instantly share code, notes, and snippets.

@Eagle-E
Created February 21, 2024 17:22
Show Gist options
  • Save Eagle-E/5b4095a60da5299ce229634386ae865f to your computer and use it in GitHub Desktop.
Save Eagle-E/5b4095a60da5299ce229634386ae865f to your computer and use it in GitHub Desktop.
ffmpeg remove audio from video
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