projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da54ed4
)
Avoid crash reported in issue #86
author
Ricardo Garcia
<sarbalap+freshmeat@gmail.com>
Tue, 15 Mar 2011 19:03:52 +0000
(20:03 +0100)
committer
Ricardo Garcia
<sarbalap+freshmeat@gmail.com>
Tue, 15 Mar 2011 19:03:52 +0000
(20:03 +0100)
youtube-dl
patch
|
blob
|
history
diff --git
a/youtube-dl
b/youtube-dl
index d8485952b69abbaecf3966d56e9c0f0ea2781c88..cbfbdca9cd29b28b6ba1915e5b7d60369362592d 100755
(executable)
--- a/
youtube-dl
+++ b/
youtube-dl
@@
-1079,7
+1079,7
@@
class YoutubeIE(InfoExtractor):
# Decide which formats to download
req_format = self._downloader.params.get('format', None)
- if 'fmt_url_map' in video_info:
+ if 'fmt_url_map' in video_info
and len(video_info['fmt_url_map']) >= 1 and ',' in video_info['fmt_url_map'][0]
:
url_map = dict(tuple(pair.split('|')) for pair in video_info['fmt_url_map'][0].split(','))
format_limit = self._downloader.params.get('format_limit', None)
if format_limit is not None and format_limit in self._available_formats: