forked from irr/python-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrt.py
executable file
·28 lines (25 loc) · 1.09 KB
/
srt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/home/irocha/dev/bin/python
import codecs, subprocess, sys, re, os
def main():
try:
output = subprocess.check_output(["file", "-bi", sys.argv[1]])
charset = output.decode('ascii').split('charset=')[1].strip()
with codecs.open(sys.argv[1], 'r', encoding=charset) as source:
with codecs.open("%s.bak" % (sys.argv[1],), 'w+', encoding='utf8') as target:
target.write(source.read())
with codecs.open("%s.bak" % (sys.argv[1],), 'r', encoding='utf8') as source:
data = source.read()
data = re.compile(r'<[^>]+>').sub('', data)
with codecs.open(sys.argv[1], 'w+', encoding='utf8') as target:
target.write(data)
os.unlink("%s.bak" % (sys.argv[1],))
os.system("zenity --info --text='Filename: %s\nEncoding: [%s]\nSize: %d'" %
(sys.argv[1], charset, os.stat(sys.argv[1]).st_size))
except:
print("Unexpected error:", sys.exc_info()[0])
raise
if __name__ == '__main__':
if len(sys.argv) == 1:
print("Usage: srt <file>")
sys.exit(1)
main()