mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from __future__ import absolute_import
|
|
import copy
|
|
import os
|
|
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
|
from svtplay_dl.fetcher.hls import hlsparse, HLS
|
|
from svtplay_dl.log import log
|
|
|
|
class Raw(Service):
|
|
def get(self, options):
|
|
error, data = self.get_urldata()
|
|
if error:
|
|
log.error("Can't get the page")
|
|
return
|
|
|
|
if self.exclude(options):
|
|
return
|
|
|
|
extention = False
|
|
filename = os.path.basename(self.url[:self.url.rfind("/")-1])
|
|
if options.output and os.path.isdir(options.output):
|
|
options.output = "%s/%s" % (os.path.dirname(options.output), filename)
|
|
extention = True
|
|
elif options.output is None:
|
|
options.output = "%s" % filename
|
|
extention = True
|
|
|
|
if self.url.find(".f4m") > 0:
|
|
if extention:
|
|
options.output = "%s.flv" % options.output
|
|
|
|
streams = hdsparse(copy.copy(options), self.url)
|
|
if streams:
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if self.url.find(".m3u8") > 0:
|
|
streams = hlsparse(self.url)
|
|
if extention:
|
|
options.output = "%s.ts" % options.output
|
|
|
|
for n in list(streams.keys()):
|
|
yield HLS(copy.copy(options), streams[n], n)
|