Skip to content

Instantly share code, notes, and snippets.

@DDoSolitary
Last active August 10, 2017 15:36
Show Gist options
  • Save DDoSolitary/20db2a518a00d212823723eef274a27d to your computer and use it in GitHub Desktop.
Save DDoSolitary/20db2a518a00d212823723eef274a27d to your computer and use it in GitHub Desktop.
Normalize font settings for ass subtitle files
#!/bin/bash
for i in *.ass; do
sed -i "s/\(\\\\fn@\?\)[^\}]*/\1$FONT/g" "$i"
sed -i "s/^\(Style: [^,]*,@\?\)[^,]*/\1$FONT/" "$i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment