[youtube] more detailed logging of stream formats

This commit is contained in:
Mort Yao 2024-06-25 05:53:30 +02:00
parent ed3f48810d
commit 0c216b3eb4
No known key found for this signature in database
GPG Key ID: 07DA00CB78203251

View File

@ -223,6 +223,7 @@ class YouTube(VideoExtractor):
stream_list = ytInitialPlayerResponse['streamingData']['formats']
for stream in stream_list:
logging.debug('Found format: itag=%s' % stream['itag'])
if 'signatureCipher' in stream:
logging.debug(' Parsing signatureCipher for itag=%s...' % stream['itag'])
qs = parse_qs(stream['signatureCipher'])
@ -285,15 +286,19 @@ class YouTube(VideoExtractor):
streams = [stream for stream in streams if 'contentLength' in stream]
for stream in streams:
logging.debug('Found adaptiveFormat: itag=%s' % stream['itag'])
stream['itag'] = str(stream['itag'])
if 'qualityLabel' in stream:
stream['quality_label'] = stream['qualityLabel']
del stream['qualityLabel']
logging.debug(' quality_label: \t%s' % stream['quality_label'])
if 'width' in stream:
stream['size'] = '{}x{}'.format(stream['width'], stream['height'])
del stream['width']
del stream['height']
logging.debug(' size: \t%s' % stream['size'])
stream['type'] = stream['mimeType']
logging.debug(' type: \t%s' % stream['type'])
stream['clen'] = stream['contentLength']
stream['init'] = '{}-{}'.format(
stream['initRange']['start'],