Browse Source

[videobam] Fix empty title handling

Philipp Hagemeister 11 years ago
parent
commit
1e0eb60f1a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/videobam.py

+ 2 - 1
youtube_dl/extractor/videobam.py

@@ -29,6 +29,7 @@ class VideoBamIE(InfoExtractor):
             'info_dict': {
             'info_dict': {
                 'id': 'pqLvq',
                 'id': 'pqLvq',
                 'ext': 'mp4',
                 'ext': 'mp4',
+                'title': '_',
             }
             }
         },
         },
     ]
     ]
@@ -61,7 +62,7 @@ class VideoBamIE(InfoExtractor):
 
 
         self._sort_formats(formats)
         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)
         description = self._og_search_description(page, default=None)
         thumbnail = self._og_search_thumbnail(page)
         thumbnail = self._og_search_thumbnail(page)
         uploader = self._html_search_regex(r'Upload by ([^<]+)</a>', page, 'uploader', fatal=False, default=None)
         uploader = self._html_search_regex(r'Upload by ([^<]+)</a>', page, 'uploader', fatal=False, default=None)