1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

Merge pull request #136 from Cybjit/master

Python 3 fixes
This commit is contained in:
Johan Andersson 2014-09-28 23:29:48 +02:00
commit a94cb4474e
2 changed files with 2 additions and 4 deletions

View File

@ -22,9 +22,7 @@ class RTMP(VideoRetriever):
if self.options.resume:
args.append("-e")
file_d = output(self.options, self.options.output, "flv", False)
if hasattr(file_d, "read") is False:
return
output(self.options, self.options.output, "flv", False)
args += ["-o", self.options.output]
if self.options.silent or self.options.output == "-":
args.append("-q")

View File

@ -56,7 +56,7 @@ class Aftonbladet(Service):
plist = "http://%s/%s/%s" % (address, path, hls["filename"])
if playlist:
streams = hlsparse(plist)
print streams
log.info("streams %r", streams)
for n in list(streams.keys()):
yield HLS(copy.copy(options), streams[n], n)
else: