youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 1e0eb60f1aa693352320d75485d3dcb626116e4a
parent 87a29e6f25fce2bae9369b5c30624c39ddf02eab
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 13 Mar 2014 17:03:29 +0100

[videobam] Fix empty title handling

Diffstat:
Myoutube_dl/extractor/videobam.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/videobam.py b/youtube_dl/extractor/videobam.py @@ -29,6 +29,7 @@ class VideoBamIE(InfoExtractor): 'info_dict': { 'id': 'pqLvq', 'ext': 'mp4', + 'title': '_', } }, ] @@ -61,7 +62,7 @@ class VideoBamIE(InfoExtractor): self._sort_formats(formats) - title = self._og_search_title(page, default='VideoBam', fatal=False) + title = self._og_search_title(page, default='_', fatal=False) description = self._og_search_description(page, default=None) thumbnail = self._og_search_thumbnail(page) uploader = self._html_search_regex(r'Upload by ([^<]+)</a>', page, 'uploader', fatal=False, default=None)