[youtube] Simplify and make sure header values are strings
authorYen Chi Hsuan <yan12125@gmail.com>
Sun, 29 Nov 2015 11:52:48 +0000 (19:52 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Sun, 29 Nov 2015 11:52:48 +0000 (19:52 +0800)
youtube_dl/extractor/youtube.py

index 52f4fe36da295263db437ea412ff0dad07d4f430..4f375e2c8f217210da842893a4119b33d3911297 100644 (file)
@@ -1477,9 +1477,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
             formats = _map_to_format_list(url_map)
             # Accept-Encoding header causes failures in live streams on Youtube and Youtube Gaming
             for a_format in formats:
-                if 'http_headers' not in a_format:
-                    a_format['http_headers'] = {}
-                a_format['http_headers']['Youtubedl-no-compression'] = True
+                a_format.setdefault('http_headers', {})['Youtubedl-no-compression'] = 'True'
         else:
             raise ExtractorError('no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')