1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-03 23:43:21 -04:00

[fragment] Fix range header when using -N and media sequence (#1048)

Authored by: shirt
This commit is contained in:
pukkandan
2021-09-22 04:16:50 +05:30
parent daf7ac2b92
commit d9d8b85747
2 changed files with 3 additions and 1 deletions

View File

@@ -332,7 +332,7 @@ class FragmentFD(FileDownloader):
def download_fragment(fragment, ctx):
frag_index = ctx['fragment_index'] = fragment['frag_index']
headers = info_dict.get('http_headers', {})
headers = info_dict.get('http_headers', {}).copy()
byte_range = fragment.get('byte_range')
if byte_range:
headers['Range'] = 'bytes=%d-%d' % (byte_range['start'], byte_range['end'] - 1)