1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-28 06:04:17 +01:00
svtplay-dl/lib/svtplay_dl/service/lemonwhale.py

56 lines
1.9 KiB
Python
Raw Normal View History

# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
import json
2019-08-25 00:40:39 +02:00
import re
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.hls import hlsparse
2019-08-25 00:40:39 +02:00
from svtplay_dl.service import Service
from svtplay_dl.utils.text import decode_html_entities
2015-09-15 20:10:32 +02:00
2018-01-30 20:11:37 +01:00
class Lemonwhale(Service):
# lemonwhale.com is just bogus for generic
2019-08-25 00:27:31 +02:00
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 = "http://ljsp.lwcdn.com/web/public/item.json?type=video&%s" % 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)
2021-04-27 19:44:09 +02:00
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)
2019-08-25 00:27:31 +02:00
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":
2019-08-25 00:33:51 +02:00
hls = "{}{}".format(janson["videos"][0]["media"]["base"], i["url"])
yield from hlsparse(self.config, self.http.request("get", hls), hls, output=self.output)