2015-09-10 23:40:48 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
from svtplay_dl.service import Service
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2015-09-10 23:40:48 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2015-09-10 23:40:48 +02:00
|
|
|
class Solidtango(Service):
|
|
|
|
supported_domains = ['skkplay.se', 'skkplay.solidtango.com']
|
|
|
|
|
|
|
|
def get(self, options):
|
|
|
|
data = self.get_urldata()
|
|
|
|
|
|
|
|
if self.exclude(options):
|
|
|
|
yield ServiceError("Excluding video")
|
|
|
|
return
|
|
|
|
|
|
|
|
match = re.search(r'<title>(http[^<]+)</title>', data)
|
|
|
|
if match:
|
|
|
|
data = self.http.request("get", match.group(1)).text
|
|
|
|
|
|
|
|
match = re.search('html5_source: "([^"]+)"', data)
|
|
|
|
if match:
|
2015-10-04 14:37:16 +02:00
|
|
|
streams = hlsparse(options, self.http.request("get", match.group(1)), match.group(1))
|
2015-09-10 23:40:48 +02:00
|
|
|
for n in list(streams.keys()):
|
2015-10-04 14:37:16 +02:00
|
|
|
yield streams[n]
|
2015-09-10 23:40:48 +02:00
|
|
|
else:
|
|
|
|
yield ServiceError("Can't find video info. if there is a video on the page. its a bug.")
|
|
|
|
return
|