Skip to content

Instantly share code, notes, and snippets.

@unti1x
Created July 3, 2019 17:10
Show Gist options
  • Save unti1x/4765492180df238fdd792e8a562d2404 to your computer and use it in GitHub Desktop.
Save unti1x/4765492180df238fdd792e8a562d2404 to your computer and use it in GitHub Desktop.
Burn .ass/.ssa hardsub with ffmpeg (bulk)
#!/bin/sh
shopt -s extglob
mkdir -p resized
for file in *.mkv
do
ffmpeg -i "$file" -vf "ass='${file%.*}.ass'" -c:a copy "resized/$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment