2013-04-21 21:59:25 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
|
|
|
from svtplay_dl.service import Service
|
2013-12-30 01:35:08 +01:00
|
|
|
from svtplay_dl.utils import get_http_data, select_quality, is_py2_old
|
2013-04-21 21:59:25 +02:00
|
|
|
from svtplay_dl.fetcher.http import download_http
|
|
|
|
|
|
|
|
from svtplay_dl.log import log
|
|
|
|
|
|
|
|
class Mtvservices(Service):
|
2014-01-01 14:57:17 +01:00
|
|
|
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):
|
2014-02-18 16:48:53 +01:00
|
|
|
match = re.search(r"mgid=\"(mgid.*[0-9]+)\" data-wi", self.get_urldata())
|
2013-04-21 21:59:25 +02:00
|
|
|
if not match:
|
2013-04-21 22:58:34 +02:00
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
2013-04-21 22:59:27 +02:00
|
|
|
url = "http://media.mtvnservices.com/player/html5/mediagen/?uri=%s" % match.group(1)
|
|
|
|
data = get_http_data(url)
|
|
|
|
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"))
|
|
|
|
streams = {}
|
|
|
|
for i in sa:
|
2013-04-21 22:59:27 +02:00
|
|
|
streams[int(i.attrib["height"])] = i.find("src").text
|
2013-04-21 22:58:34 +02:00
|
|
|
if len(streams) == 0:
|
2013-12-30 01:43:59 +01:00
|
|
|
log.error("Can't find video file: %s", ss.text)
|
2013-04-21 22:58:34 +02:00
|
|
|
sys.exit(2)
|
2013-04-21 21:59:25 +02:00
|
|
|
stream = select_quality(options, streams)
|
|
|
|
temp = stream.index("gsp.comedystor")
|
|
|
|
url = "http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4/44620/mtvnorigin/%s" % stream[temp:]
|
|
|
|
download_http(options, url)
|