1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/lib/svtplay_dl/service/flowonline.py
2021-05-16 13:55:28 +02:00

38 lines
1.2 KiB
Python

# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
import copy
import re
from urllib.parse import urlparse
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.service import OpenGraphThumbMixin
from svtplay_dl.service import Service
from svtplay_dl.subtitle import subtitle
class Flowonline(Service, OpenGraphThumbMixin):
supported_domains_re = [r"^([a-z]{1,4}\.|www\.)?flowonline\.tv$"]
def get(self):
match = re.search('iframe src="(/embed/[^"]+)"', self.get_urldata())
if not match:
yield ServiceError("Cant find video")
return
parse = urlparse(self.url)
url = f"{parse.scheme}://{parse.netloc}{match.group(1)}"
data = self.http.get(url)
match = re.search('src="([^"]+vtt)"', data.text)
if match:
yield subtitle(copy.copy(self.config), "wrst", match.group(1))
match = re.search('source src="([^"]+)" type="application/x-mpegURL"', data.text)
if not match:
yield ServiceError("Cant find video file")
return
yield from hlsparse(self.config, self.http.request("get", match.group(1)), match.group(1), output=self.output)