Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save julenwang/7d436dea78f9af739696a6a83bac340e to your computer and use it in GitHub Desktop.
Save julenwang/7d436dea78f9af739696a6a83bac340e to your computer and use it in GitHub Desktop.
Extract subtitles from .mkv files on Mac OS X
@julenwang
Copy link
Author

for file in *.mkv; do
  sub=$(echo $file | sed 's/\.mkv$/.ass/');
  /Applications/MKVToolNix-79.0.app/Contents/MacOS/mkvextract tracks "${file}" 3:"${sub}";
done

@julenwang
Copy link
Author

3 是从 MKVToolNix App 里面获取的 ID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment