[fragment] Fix range header when using -N and media sequence (#1048)
Authored by: shirt
This commit is contained in:
parent
daf7ac2b92
commit
d9d8b85747
2 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue