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/mtvservices.py

41 lines
1.4 KiB
Python
Raw Normal View History

2014-03-19 22:44:58 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
2013-04-21 21:59:25 +02:00
from __future__ import absolute_import
import re
2014-06-07 20:43:40 +02:00
import copy
2013-04-21 21:59:25 +02:00
import xml.etree.ElementTree as ET
from svtplay_dl.service import Service
from svtplay_dl.utils import is_py2_old
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.error import ServiceError
2013-04-21 21:59:25 +02:00
class Mtvservices(Service):
supported_domains = ['colbertnation.com', 'thedailyshow.com']
2013-04-21 21:59:25 +02:00
2014-01-06 23:14:06 +01:00
def get(self, options):
2015-08-30 11:27:31 +02:00
data = self.get_urldata()
2014-12-22 11:02:28 +01:00
match = re.search(r"mgid=\"(mgid.*[0-9]+)\" data-wi", data)
2013-04-21 21:59:25 +02:00
if not match:
yield ServiceError("Can't find video file")
2014-10-06 23:21:43 +02:00
return
2013-04-21 22:59:27 +02:00
url = "http://media.mtvnservices.com/player/html5/mediagen/?uri=%s" % match.group(1)
data = self.http.request("get", url)
2013-04-21 22:59:27 +02:00
start = data.index("<?xml version=")
data = data[start:]
xml = ET.XML(data)
ss = xml.find("video").find("item")
2013-12-30 01:35:08 +01:00
if is_py2_old:
2013-04-21 21:59:25 +02:00
sa = list(ss.getiterator("rendition"))
else:
sa = list(ss.iter("rendition"))
if self.exclude(options):
return
2013-04-21 21:59:25 +02:00
for i in sa:
temp = i.find("src").text.index("gsp.comedystor")
url = "http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4/44620/mtvnorigin/%s" % i.find("src").text[temp:]
2014-06-07 20:43:40 +02:00
yield HTTP(copy.copy(options), url, i.attrib["height"])