We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596b266 commit 9f6c03aCopy full SHA for 9f6c03a
youtube_dl/extractor/cbsnews.py
@@ -26,7 +26,7 @@ class CBSNewsEmbedIE(CBSIE):
26
def _real_extract(self, url):
27
item = self._parse_json(zlib.decompress(compat_b64decode(
28
compat_urllib_parse_unquote(self._match_id(url))),
29
- -zlib.MAX_WBITS), None)['video']['items'][0]
+ -zlib.MAX_WBITS).decode('utf-8'), None)['video']['items'][0]
30
return self._extract_video_info(item['mpxRefId'], 'cbsnews')
31
32
0 commit comments