aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/hls.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-25 09:21:45 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-25 09:21:45 +0200
commitfec02bcc90ad26ac5bbd11173fa83db91b3858bb (patch)
tree1ad8daffe8966536a9163cd041f0705546c1bb45 /youtube_dl/downloader/hls.py
parentc6e90caaa661e8368f099055c609c7c121bbbc2b (diff)
downloadyoutube-dl-fec02bcc90ad26ac5bbd11173fa83db91b3858bb.zip
youtube-dl-fec02bcc90ad26ac5bbd11173fa83db91b3858bb.tar.gz
youtube-dl-fec02bcc90ad26ac5bbd11173fa83db91b3858bb.tar.bz2
[hlsnative] Correct handling when remaining_bytes is None
Diffstat (limited to 'youtube_dl/downloader/hls.py')
-rw-r--r--youtube_dl/downloader/hls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 56cce28..68eafa4 100644
--- a/youtube_dl/downloader/hls.py
+++ b/youtube_dl/downloader/hls.py
@@ -81,16 +81,16 @@ class NativeHlsFD(FileDownloader):
'[hlsnative] %s: Downloading segment %d / %d' %
(info_dict['id'], i + 1, len(segment_urls)))
seg_req = compat_urllib_request.Request(segurl)
- if remaining_bytes:
+ if remaining_bytes is not None:
seg_req.add_header('Range', 'bytes=0-%d' % (remaining_bytes - 1))
segment = self.ydl.urlopen(seg_req).read()
- if remaining_bytes:
+ if remaining_bytes is not None:
segment = segment[:remaining_bytes]
remaining_bytes -= len(segment)
outf.write(segment)
byte_counter += len(segment)
- if remaining_bytes <= 0:
+ if remaining_bytes is not None and remaining_bytes <= 0:
break
self._hook_progress({