X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=youtube-dl.git;a=blobdiff_plain;f=youtube_dl%2Fdownloader%2Fhls.py;h=0f2c06f40414fd94154c69d2aad365880dcb0e20;hp=84bc349288052fe15e92be61e72645db007003d0;hb=6e65a2a67e075ae8f3e4fe03c732d7772d36f5e1;hpb=f8c7bed133fe729a9e26f23e5685559e3fa12eb1 diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 84bc34928..0f2c06f40 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -141,7 +141,7 @@ class HlsFD(FragmentFD): count = 0 headers = info_dict.get('http_headers', {}) if byte_range: - headers['Range'] = 'bytes=%d-%d' % (byte_range['start'], byte_range['end']) + headers['Range'] = 'bytes=%d-%d' % (byte_range['start'], byte_range['end'] - 1) while count <= fragment_retries: try: success, frag_content = self._download_fragment(