Skip to content

Instantly share code, notes, and snippets.

@1c7
Created May 3, 2014 13:02
Show Gist options
  • Save 1c7/ab419f1d2af56bd5c815 to your computer and use it in GitHub Desktop.
Save 1c7/ab419f1d2af56bd5c815 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import os
import sys
import pysubs
try:
print (sys.argv[1])
print()
file_full_path = sys.argv[1]
except:
print("error")
input()
exit()
subs = pysubs.load(file_full_path)
for line in subs:
line.text = line.text.capitalize()
subs.save(save_path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment