X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvideobam.py;h=0eb3d9414ea339e0854949732f40ab9975ce8500;hb=eb08081330f5ef52d66140589137ae1bb05eee5f;hp=3366d982c7fc8fcc54d0d037c15f0b2205bb3d77;hpb=3e123c1e2887cb144f1b73cabb78ab34c43d10bc;p=youtube-dl diff --git a/youtube_dl/extractor/videobam.py b/youtube_dl/extractor/videobam.py index 3366d982c..0eb3d9414 100644 --- 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 ([^<]+)', page, 'uploader', fatal=False, default=None) @@ -76,4 +77,5 @@ class VideoBamIE(InfoExtractor): 'uploader': uploader, 'view_count': view_count, 'formats': formats, - } \ No newline at end of file + 'age_limit': 18, + }