1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/service/hbo.py

45 lines
1.5 KiB
Python
Raw Normal View History

2013-03-02 21:26:28 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
from __future__ import absolute_import
import re
2014-06-07 20:43:40 +02:00
import copy
import xml.etree.ElementTree as ET
2018-01-30 22:07:21 +01:00
from urllib.parse import urlparse
from svtplay_dl.service import Service
from svtplay_dl.log import log
2014-04-21 18:27:07 +02:00
from svtplay_dl.fetcher.rtmp import RTMP
2015-09-15 20:10:32 +02:00
class Hbo(Service):
supported_domains = ['hbo.com']
def get(self):
2014-01-06 23:14:06 +01:00
parse = urlparse(self.url)
try:
other = parse.fragment
except KeyError:
log.error("Something wrong with that url")
2014-10-06 23:21:43 +02:00
return
match = re.search("^/(.*).html", other)
if not match:
log.error("Cant find video file")
2014-10-06 23:21:43 +02:00
return
url = "http://www.hbo.com/data/content/{0}.xml".format(match.group(1))
data = self.http.request("get", url).content
xml = ET.XML(data)
videoid = xml.find("content")[1].find("videoId").text
url = "http://render.cdn.hbo.com/data/content/global/videos/data/{0}.xml".format(videoid)
data = self.http.request("get", url).content
xml = ET.XML(data)
ss = xml.find("videos")
2018-01-13 20:27:40 +01:00
sa = list(ss.iter("size"))
2014-04-21 18:27:07 +02:00
for i in sa:
videourl = i.find("tv14").find("path").text
match = re.search("/([a-z0-9]+:[a-z0-9]+)/", videourl)
self.options.other = "-y {0}".format(videourl[videourl.index(match.group(1)):])
yield RTMP(copy.copy(self.options), videourl[:videourl.index(match.group(1))], i.attrib["width"])