mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
|
# ex:ts=4:sw=4:sts=4:et
|
||
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||
|
from __future__ import absolute_import
|
||
|
import re
|
||
|
import copy
|
||
|
|
||
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
||
|
from svtplay_dl.utils.urllib import urlparse
|
||
|
from svtplay_dl.fetcher.hls import hlsparse
|
||
|
from svtplay_dl.error import ServiceError
|
||
|
from svtplay_dl.subtitle import subtitle
|
||
|
|
||
|
|
||
|
class Flowonline(Service, OpenGraphThumbMixin):
|
||
|
supported_domains_re = [
|
||
|
r'^([a-z]{1,4}\.|www\.)?flowonline\.tv$',
|
||
|
]
|
||
|
|
||
|
def get(self):
|
||
|
if self.exclude():
|
||
|
yield ServiceError("Excluding video")
|
||
|
return
|
||
|
|
||
|
match = re.search('iframe src="(/embed/[^"]+)"', self.get_urldata())
|
||
|
if not match:
|
||
|
yield ServiceError("Cant find video")
|
||
|
return
|
||
|
parse = urlparse(self.url)
|
||
|
|
||
|
url = "%s://%s%s" % (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.options), "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
|
||
|
|
||
|
streams = hlsparse(self.options, self.http.request("get", match.group(1)), match.group(1))
|
||
|
for n in list(streams.keys()):
|
||
|
yield streams[n]
|