Skip to content

Instantly share code, notes, and snippets.

@jgaydos
Created February 14, 2019 01:13
Show Gist options
  • Save jgaydos/be77ea2327ef084fb38c0c1d6fd282fb to your computer and use it in GitHub Desktop.
Save jgaydos/be77ea2327ef084fb38c0c1d6fd282fb to your computer and use it in GitHub Desktop.
FFmpeg: Remove unwanted streams (audio/sub)
#!/bin/bash
ffmpeg -i in.mkv -map 0:0 -map 0:1 -acodec copy -vcodec copy out.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment