remove print statement

This commit is contained in:
Audrey 2024-11-06 18:51:42 -05:00
parent f4e3a4e46d
commit 9106506dfe

View File

@ -254,9 +254,6 @@ def _real_extract(self, url):
'url': video_info.get('directUrl'), 'url': video_info.get('directUrl'),
'ext': 'mp4', 'ext': 'mp4',
}] if url_or_none(video_info.get('directUrl')) else [] }] if url_or_none(video_info.get('directUrl')) else []
print(formats)
if video_info.get('streamUrl') and not re.search(r'\.mp4$', video_info.get('streamUrl') or ''): if video_info.get('streamUrl') and not re.search(r'\.mp4$', video_info.get('streamUrl') or ''):
formats.extend(self._extract_m3u8_formats( formats.extend(self._extract_m3u8_formats(
video_info.get('streamUrl'), video_id, 'mp4', video_info.get('streamUrl'), video_id, 'mp4',