projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bff48a
)
[downloader/hls] Remove Accept-encoding from headers passed to ffmpeg
author
Yen Chi Hsuan
<yan12125@gmail.com>
Fri, 27 Nov 2015 13:37:45 +0000
(21:37 +0800)
committer
Yen Chi Hsuan
<yan12125@gmail.com>
Fri, 27 Nov 2015 13:37:45 +0000
(21:37 +0800)
Fails for Youtube Gaming live streams (#7671)
youtube_dl/downloader/hls.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/hls.py
b/youtube_dl/downloader/hls.py
index 9a83a73dd6b16db50cc4e72a343b1669c146a386..92765a3f9c6acdbc91136fbe00d24197af71fa29 100644
(file)
--- a/
youtube_dl/downloader/hls.py
+++ b/
youtube_dl/downloader/hls.py
@@
-35,7
+35,7
@@
class HlsFD(FileDownloader):
# [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
args += [
'-headers',
- ''.join('%s: %s\r\n' % (key, val) for key, val in info_dict['http_headers'].items())]
+ ''.join('%s: %s\r\n' % (key, val) for key, val in info_dict['http_headers'].items()
if key.lower() != 'accept-encoding'
)]
args += ['-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc']