mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
f3f748dde2
fixed #242
26 lines
763 B
Python
26 lines
763 B
Python
from __future__ import absolute_import
|
|
import re
|
|
import copy
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
|
from svtplay_dl.log import log
|
|
|
|
|
|
class Efn(Service, OpenGraphThumbMixin):
|
|
supported_domains_re = ["www.efn.se"]
|
|
|
|
def get(self, options):
|
|
error, data = self.get_urldata()
|
|
if error:
|
|
log.error("Cant download page")
|
|
return
|
|
match = re.search('data-hls="([^"]+)"', self.get_urldata()[1])
|
|
if not match:
|
|
log.error("Cant find video info")
|
|
return
|
|
|
|
streams = hlsparse(match.group(1))
|
|
if streams:
|
|
for n in list(streams.keys()):
|
|
yield HLS(copy.copy(options), streams[n], n) |