mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
Removes extranous debugging info :)
This commit is contained in:
parent
4408d996fb
commit
d8dddb7c02
|
@ -2385,17 +2385,17 @@ class ComedyCentralIE(InfoExtractor):
|
||||||
self._downloader.trouble(u'\nERROR: unable to download ' + mediaId + ': No videos found')
|
self._downloader.trouble(u'\nERROR: unable to download ' + mediaId + ': No videos found')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# For now, just pick the highest bitrate
|
|
||||||
|
|
||||||
print turls
|
|
||||||
|
|
||||||
if self._downloader.params.get('listformats', None):
|
if self._downloader.params.get('listformats', None):
|
||||||
self._print_formats([i[0] for i in turls])
|
self._print_formats([i[0] for i in turls])
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# For now, just pick the highest bitrate
|
||||||
format,video_url = turls[-1]
|
format,video_url = turls[-1]
|
||||||
|
|
||||||
|
# Get the format arg from the arg stream
|
||||||
req_format = self._downloader.params.get('format', None)
|
req_format = self._downloader.params.get('format', None)
|
||||||
|
|
||||||
|
# Select format if we can find one
|
||||||
for f,v in turls:
|
for f,v in turls:
|
||||||
if f == req_format:
|
if f == req_format:
|
||||||
format, video_url = f, v
|
format, video_url = f, v
|
||||||
|
|
Loading…
Reference in a new issue