Last active
March 11, 2019 12:55
-
-
Save userid/ff634c63658b2167dc5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hashlib | |
| import re | |
| import time | |
| from livestreamer.plugin import Plugin | |
| from livestreamer.plugin.api import http, validate | |
| from livestreamer.stream import HTTPStream | |
| #from:https://github.com/chrippa/livestreamer/pull/970/commits | |
| API_URL = "http://www.douyutv.com/swf_api/room/{0}?cdn=&nofan=yes&_t={1}&sign={2}" | |
| API_SECRET = "bLFlashflowlad92" | |
| SHOW_STATUS_ONLINE = 1 | |
| SHOW_STATUS_OFFLINE = 2 | |
| STREAM_WEIGHTS = { | |
| "middle": 540, | |
| "source": 1080 | |
| } | |
| _url_re = re.compile(""" | |
| http(s)?://(www\.)?douyutv.com | |
| /(?P<channel>[^/]+) | |
| """, re.VERBOSE) | |
| _room_schema = validate.Schema( | |
| { | |
| "data": validate.any(None, { | |
| "show_status": validate.all( | |
| validate.text, | |
| validate.transform(int) | |
| ), | |
| "rtmp_url": validate.text, | |
| "rtmp_live": validate.text, | |
| "rtmp_multi_bitrate": validate.all( | |
| validate.any([], { | |
| validate.text: validate.text | |
| }), | |
| validate.transform(dict) | |
| ) | |
| }) | |
| }, | |
| validate.get("data") | |
| ) | |
| class Douyutv(Plugin): | |
| @classmethod | |
| def can_handle_url(self, url): | |
| return _url_re.match(url) | |
| @classmethod | |
| def stream_weight(cls, stream): | |
| if stream in STREAM_WEIGHTS: | |
| return STREAM_WEIGHTS[stream], "douyutv" | |
| return Plugin.stream_weight(stream) | |
| def _get_streams(self): | |
| match = _url_re.match(self.url) | |
| channel = match.group("channel") | |
| ts = int(time.time() / 60) | |
| sign = hashlib.md5(("{0}{1}{2}".format(channel, API_SECRET, ts)).encode("utf-8")).hexdigest() | |
| res = http.get(API_URL.format(channel, ts, sign)) | |
| room = http.json(res, schema=_room_schema) | |
| if not room: | |
| return | |
| if room["show_status"] != SHOW_STATUS_ONLINE: | |
| return | |
| url = "{room[rtmp_url]}/{room[rtmp_live]}".format(room=room) | |
| stream = HTTPStream(self.session, url) | |
| yield "source", stream | |
| for name, url in room["rtmp_multi_bitrate"].items(): | |
| url = "{room[rtmp_url]}/{url}".format(room=room, url=url) | |
| stream = HTTPStream(self.session, url) | |
| yield name, stream | |
| __plugin__ = Douyutv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment