mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
import json
|
|
import re
|
|
|
|
from svtplay_dl.error import ServiceError
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.utils.text import decode_html_entities
|
|
|
|
|
|
class Lemonwhale(Service):
|
|
# lemonwhale.com is just bogus for generic
|
|
supported_domains = ["vk.se", "lemonwhale.com"]
|
|
|
|
def get(self):
|
|
vid = self.get_vid()
|
|
if not vid:
|
|
yield ServiceError("Can't find video id")
|
|
return
|
|
|
|
url = f"http://ljsp.lwcdn.com/web/public/item.json?type=video&{decode_html_entities(vid)}"
|
|
data = self.http.request("get", url).text
|
|
jdata = json.loads(data)
|
|
if "videos" in jdata:
|
|
yield from self.get_video(jdata)
|
|
|
|
url = f"http://ljsp.lwcdn.com/web/public/video.json?id={decode_html_entities(vid)}&delivery=hls"
|
|
data = self.http.request("get", url).text
|
|
jdata = json.loads(data)
|
|
if "videos" in jdata:
|
|
yield from self.get_video(jdata)
|
|
|
|
def get_vid(self):
|
|
match = re.search(r'video url-([^"]+)', self.get_urldata())
|
|
if match:
|
|
return match.group(1)
|
|
|
|
match = re.search(r"__INITIAL_STATE__ = ({.*})</script>", self.get_urldata())
|
|
if match:
|
|
janson = json.loads(match.group(1))
|
|
vid = janson["content"]["current"]["data"]["templateData"]["pageData"]["video"]["id"]
|
|
return vid
|
|
|
|
match = re.search(r'embed.jsp\?([^"]+)"', self.get_urldata())
|
|
if match:
|
|
return match.group(1)
|
|
return None
|
|
|
|
def get_video(self, janson):
|
|
videos = janson["videos"][0]["media"]["streams"]
|
|
for i in videos:
|
|
if i["name"] == "auto":
|
|
hls = f"{janson['videos'][0]['media']['base']}{i['url']}"
|
|
yield from hlsparse(self.config, self.http.request("get", hls), hls, output=self.output)
|