2014-04-21 19:52:09 +02:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
import json
|
|
|
|
import re
|
2014-08-23 13:33:38 +02:00
|
|
|
import os
|
2014-04-21 19:52:09 +02:00
|
|
|
from svtplay_dl.log import log
|
2014-12-08 23:07:02 +01:00
|
|
|
from svtplay_dl.utils import is_py2, is_py3, get_http_data
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-07-28 15:53:23 +02:00
|
|
|
class subtitle(object):
|
2014-08-31 01:20:36 +02:00
|
|
|
def __init__(self, options, subtype, url):
|
2014-04-21 19:52:09 +02:00
|
|
|
self.url = url
|
|
|
|
self.subtitle = None
|
2014-08-31 01:20:36 +02:00
|
|
|
self.options = options
|
|
|
|
self.subtype = subtype
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
def download(self):
|
2014-12-08 23:07:02 +01:00
|
|
|
error, subdata = get_http_data(self.url, cookiejar=self.options.cookies)
|
|
|
|
if error:
|
|
|
|
log.error("Can't download subtitle")
|
|
|
|
return
|
2014-08-31 01:20:36 +02:00
|
|
|
|
|
|
|
data = None
|
|
|
|
if self.subtype == "tt":
|
|
|
|
data = self.tt(subdata)
|
|
|
|
if self.subtype == "json":
|
|
|
|
data = self.json(subdata)
|
|
|
|
if self.subtype == "sami":
|
|
|
|
data = self.sami(subdata)
|
|
|
|
if self.subtype == "smi":
|
|
|
|
data = self.smi(subdata)
|
|
|
|
if self.subtype == "wrst":
|
|
|
|
data = self.wrst(subdata)
|
|
|
|
|
|
|
|
save(self.options, data)
|
|
|
|
|
|
|
|
def tt(self, subdata):
|
2014-04-21 19:52:09 +02:00
|
|
|
i = 1
|
|
|
|
data = ""
|
2014-08-31 00:56:51 +02:00
|
|
|
tree = ET.ElementTree(ET.fromstring(subdata))
|
2014-07-09 18:39:18 +02:00
|
|
|
xml = tree.find("{http://www.w3.org/2006/10/ttaf1}body").find("{http://www.w3.org/2006/10/ttaf1}div")
|
|
|
|
plist = list(xml.findall("{http://www.w3.org/2006/10/ttaf1}p"))
|
|
|
|
for node in plist:
|
2014-04-21 19:52:09 +02:00
|
|
|
tag = norm(node.tag)
|
2014-07-09 18:39:18 +02:00
|
|
|
if tag == "p" or tag == "span":
|
2014-04-21 19:52:09 +02:00
|
|
|
begin = node.attrib["begin"]
|
|
|
|
if not ("dur" in node.attrib):
|
|
|
|
duration = node.attrib["duration"]
|
|
|
|
else:
|
|
|
|
duration = node.attrib["dur"]
|
|
|
|
if not ("end" in node.attrib):
|
|
|
|
begin2 = begin.split(":")
|
|
|
|
duration2 = duration.split(":")
|
|
|
|
sec = float(begin2[2]) + float(duration2[2])
|
|
|
|
end = "%02d:%02d:%06.3f" % (int(begin[0]), int(begin[1]), sec)
|
|
|
|
else:
|
|
|
|
end = node.attrib["end"]
|
2014-12-26 02:04:29 +01:00
|
|
|
data += '%s\n%s --> %s\n' % (i, begin.replace(".", ","), end.replace(".", ","))
|
2014-07-09 18:39:18 +02:00
|
|
|
data = tt_text(node, data)
|
|
|
|
data += "\n"
|
2014-04-21 19:52:09 +02:00
|
|
|
i += 1
|
2014-04-27 15:33:05 +02:00
|
|
|
|
2014-04-21 19:52:09 +02:00
|
|
|
if is_py2:
|
|
|
|
data = data.encode('utf8')
|
2014-08-31 01:20:36 +02:00
|
|
|
return data
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
def json(self, subdata):
|
2014-08-31 00:56:51 +02:00
|
|
|
data = json.loads(subdata)
|
2014-04-21 19:52:09 +02:00
|
|
|
number = 1
|
|
|
|
subs = ""
|
|
|
|
for i in data:
|
|
|
|
subs += "%s\n%s --> %s\n" % (number, timestr(int(i["startMillis"])), timestr(int(i["endMillis"])))
|
2014-11-25 19:02:50 +01:00
|
|
|
if is_py2:
|
|
|
|
subs += "%s\n\n" % i["text"].encode("utf-8")
|
|
|
|
else:
|
|
|
|
subs += "%s\n\n" % i["text"]
|
2014-04-21 19:52:09 +02:00
|
|
|
number += 1
|
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
return subs
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
def sami(self, subdata):
|
2014-08-31 00:56:51 +02:00
|
|
|
tree = ET.XML(subdata)
|
2014-04-21 19:52:09 +02:00
|
|
|
subt = tree.find("Font")
|
|
|
|
subs = ""
|
|
|
|
n = 0
|
|
|
|
for i in subt.getiterator():
|
|
|
|
if i.tag == "Subtitle":
|
|
|
|
n = i.attrib["SpotNumber"]
|
2014-12-15 22:19:58 +01:00
|
|
|
|
2014-04-21 19:52:09 +02:00
|
|
|
if i.attrib["SpotNumber"] == "1":
|
2014-12-15 22:19:58 +01:00
|
|
|
subs += "%s\n%s --> %s\n" % (i.attrib["SpotNumber"], timecolon(i.attrib["TimeIn"]), timecolon(i.attrib["TimeOut"]))
|
2014-04-21 19:52:09 +02:00
|
|
|
else:
|
2014-12-15 22:19:58 +01:00
|
|
|
subs += "\n%s\n%s --> %s\n" % (i.attrib["SpotNumber"], timecolon(i.attrib["TimeIn"]), timecolon(i.attrib["TimeOut"]))
|
2014-04-21 19:52:09 +02:00
|
|
|
else:
|
|
|
|
if int(n) > 0:
|
|
|
|
subs += "%s\n" % i.text
|
|
|
|
|
|
|
|
if is_py2:
|
|
|
|
subs = subs.encode('utf8')
|
2014-08-31 01:20:36 +02:00
|
|
|
return subs
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
def smi(self, subdata):
|
2014-11-23 13:02:14 +01:00
|
|
|
if is_py3:
|
2014-08-31 01:20:36 +02:00
|
|
|
subdata = subdata.decode("latin1")
|
2014-12-15 22:06:24 +01:00
|
|
|
recomp = re.compile(r'<SYNC Start=(\d+)>\s+<P Class=\w+>(.*)\s+<SYNC Start=(\d+)>\s+<P Class=\w+>', re.M|re.I|re.U)
|
2014-04-21 19:52:09 +02:00
|
|
|
number = 1
|
|
|
|
subs = ""
|
2014-11-23 13:02:14 +01:00
|
|
|
TAG_RE = re.compile(r'<[^>]+>')
|
|
|
|
bad_char = re.compile(r'\x96')
|
2014-08-31 01:20:36 +02:00
|
|
|
for i in recomp.finditer(subdata):
|
2014-12-15 22:06:24 +01:00
|
|
|
subs += "%s\n%s --> %s\n" % (number, timestr(i.group(1)), timestr(i.group(3)))
|
|
|
|
text = "%s\n\n" % TAG_RE.sub('', i.group(2).replace("<br>", "\n"))
|
2014-11-23 13:02:14 +01:00
|
|
|
if text[0] == "\x0a":
|
|
|
|
text = text[1:]
|
|
|
|
subs += text
|
2014-04-21 19:52:09 +02:00
|
|
|
number += 1
|
2014-11-23 13:02:14 +01:00
|
|
|
recomp = re.compile(r'\r')
|
|
|
|
text = bad_char.sub('-', recomp.sub('', subs)).replace('"', '"')
|
2014-08-31 01:20:36 +02:00
|
|
|
return text
|
2014-04-21 19:52:09 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
def wrst(self, subdata):
|
2014-04-21 19:52:09 +02:00
|
|
|
recomp = re.compile(r"(\d+)\r\n([\d:\.]+ --> [\d:\.]+)?([^\r\n]+)?\r\n([^\r\n]+)\r\n(([^\r\n]*)\r\n)?")
|
|
|
|
srt = ""
|
2014-06-07 18:50:51 +02:00
|
|
|
subtract = False
|
2014-08-31 00:56:51 +02:00
|
|
|
for i in recomp.finditer(subdata):
|
2014-06-07 18:50:51 +02:00
|
|
|
number = int(i.group(1))
|
|
|
|
match = re.search(r'(\d+):(\d+):([\d\.]+) --> (\d+):(\d+):([\d\.]+)', i.group(2))
|
|
|
|
hour1 = int(match.group(1))
|
|
|
|
hour2 = int(match.group(4))
|
|
|
|
if number == 1:
|
|
|
|
if hour1 > 9:
|
2014-06-07 18:54:51 +02:00
|
|
|
subtract = True
|
2014-06-07 18:50:51 +02:00
|
|
|
if subtract:
|
|
|
|
hour1 -= 10
|
|
|
|
hour2 -= 10
|
2014-06-07 21:56:28 +02:00
|
|
|
time = "%s:%s:%s --> %s:%s:%s" % (hour1, match.group(2), match.group(3).replace(".", ","), hour2, match.group(5), match.group(6).replace(".", ","))
|
2014-06-07 18:50:51 +02:00
|
|
|
sub = "%s\n%s\n%s\n" % (i.group(1), time, i.group(4))
|
2014-04-21 19:52:09 +02:00
|
|
|
if len(i.group(6)) > 0:
|
|
|
|
sub += "%s\n" % i.group(6)
|
|
|
|
sub += "\n"
|
|
|
|
sub = re.sub('<[^>]*>', '', sub)
|
|
|
|
srt += sub
|
2014-04-27 15:33:05 +02:00
|
|
|
|
2014-08-31 01:20:36 +02:00
|
|
|
return srt
|
2014-04-27 15:33:05 +02:00
|
|
|
|
|
|
|
def save(options, data):
|
|
|
|
filename = re.search(r"(.*)\.[a-z0-9]{2,3}$", options.output)
|
|
|
|
if filename:
|
|
|
|
options.output = "%s.srt" % filename.group(1)
|
|
|
|
else:
|
|
|
|
options.output = "%s.srt" % options.output
|
|
|
|
|
|
|
|
log.info("Subtitle: %s", options.output)
|
2014-08-23 13:33:38 +02:00
|
|
|
if os.path.isfile(options.output) and not options.force:
|
|
|
|
log.info("File already exists. use --force to overwrite")
|
|
|
|
return
|
2014-04-27 15:33:05 +02:00
|
|
|
fd = open(options.output, "w")
|
|
|
|
fd.write(data)
|
|
|
|
fd.close()
|
2014-04-21 19:52:09 +02:00
|
|
|
|
|
|
|
def timestr(msec):
|
|
|
|
"""
|
|
|
|
Convert a millisecond value to a string of the following
|
|
|
|
format:
|
|
|
|
|
|
|
|
HH:MM:SS,SS
|
|
|
|
|
|
|
|
with 10 millisecond precision. Note the , seperator in
|
|
|
|
the seconds.
|
|
|
|
"""
|
|
|
|
sec = float(msec) / 1000
|
|
|
|
|
|
|
|
hours = int(sec / 3600)
|
|
|
|
sec -= hours * 3600
|
|
|
|
|
|
|
|
minutes = int(sec / 60)
|
|
|
|
sec -= minutes * 60
|
|
|
|
|
|
|
|
output = "%02d:%02d:%05.2f" % (hours, minutes, sec)
|
|
|
|
return output.replace(".", ",")
|
|
|
|
|
2014-12-15 22:19:58 +01:00
|
|
|
def timecolon(data):
|
2014-12-22 10:20:37 +01:00
|
|
|
match = re.search(r"(\d+:\d+:\d+):(\d+)", data)
|
2014-12-15 22:19:58 +01:00
|
|
|
return "%s,%s" % (match.group(1), match.group(2))
|
|
|
|
|
2014-04-21 19:52:09 +02:00
|
|
|
def norm(name):
|
|
|
|
if name[0] == "{":
|
|
|
|
_, tag = name[1:].split("}")
|
|
|
|
return tag
|
|
|
|
else:
|
|
|
|
return name
|
2014-07-09 18:39:18 +02:00
|
|
|
|
|
|
|
def tt_text(node, data):
|
|
|
|
if node.text:
|
|
|
|
data += "%s\n" % node.text.strip(' \t\n\r')
|
|
|
|
for i in node:
|
|
|
|
if i.text:
|
|
|
|
data += "%s\n" % i.text.strip(' \t\n\r')
|
|
|
|
if i.tail:
|
|
|
|
text = i.tail.strip(' \t\n\r')
|
|
|
|
if text:
|
|
|
|
data += "%s\n" % text
|
|
|
|
return data
|