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 -*-
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-02-12 19:43:37 +01:00
|
|
|
import sys
|
|
|
|
import re
|
2013-04-14 21:26:39 +02:00
|
|
|
if sys.version_info > (3, 0):
|
|
|
|
from urllib.parse import urlparse
|
|
|
|
else:
|
|
|
|
from urlparse import urlparse
|
2013-02-12 19:43:37 +01:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2013-04-14 21:08:12 +02:00
|
|
|
from svtplay_dl.utils import get_http_data, select_quality, check_redirect
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
|
|
|
from svtplay_dl.fetcher.rtmp import download_rtmp
|
|
|
|
from svtplay_dl.fetcher.http import download_http
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
class Justin():
|
|
|
|
def handle(self, url):
|
|
|
|
return ("twitch.tv" in url) or ("justin.tv" in url)
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
parse = urlparse(url)
|
|
|
|
match = re.search("/b/(\d+)", parse.path)
|
|
|
|
if match:
|
|
|
|
url = "http://api.justin.tv/api/broadcast/by_archive/%s.xml?onsite=true" % match.group(1)
|
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
url = xml.find("archive").find("video_file_url").text
|
|
|
|
|
|
|
|
download_http(options, url)
|
|
|
|
else:
|
|
|
|
match = re.search("/(.*)", parse.path)
|
|
|
|
if match:
|
|
|
|
user = match.group(1)
|
|
|
|
data = get_http_data(url)
|
|
|
|
match = re.search("embedSWF\(\"(.*)\", \"live", data)
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find swf file.")
|
2013-04-14 21:08:12 +02:00
|
|
|
options.other = check_redirect(match.group(1))
|
2013-01-17 00:21:47 +01:00
|
|
|
url = "http://usher.justin.tv/find/%s.xml?type=any&p=2321" % user
|
|
|
|
options.live = True
|
|
|
|
data = get_http_data(url)
|
|
|
|
data = re.sub("<(\d+)", "<_\g<1>", data)
|
|
|
|
data = re.sub("</(\d+)", "</_\g<1>", data)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
sa = list(xml)
|
|
|
|
else:
|
|
|
|
sa = list(xml)
|
|
|
|
streams = {}
|
|
|
|
for i in sa:
|
|
|
|
if i.tag[1:][:-1] != "iv":
|
|
|
|
try:
|
|
|
|
stream = {}
|
|
|
|
stream["token"] = i.find("token").text
|
|
|
|
stream["url"] = "%s/%s" % (i.find("connect").text, i.find("play").text)
|
|
|
|
streams[int(i.find("video_height").text)] = stream
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2013-03-10 14:05:46 +01:00
|
|
|
if len(streams) > 0:
|
|
|
|
test = select_quality(options, streams)
|
|
|
|
options.other = "-j '%s' -W %s" % (test["token"], options.other)
|
|
|
|
options.resume = False
|
|
|
|
download_rtmp(options, test["url"])
|
|
|
|
else:
|
|
|
|
log.error("Can't any streams")
|
|
|
|
sys.exit(2)
|