Browse Source

[meta] Make duration and description optional

For iframe URLs
totalwebcasting
Sergey M․ 8 years ago
parent
commit
eafa643715
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      youtube_dl/extractor/meta.py

+ 3
- 2
youtube_dl/extractor/meta.py View File

@ -47,9 +47,10 @@ class METAIE(InfoExtractor):
'id': video_id,
'url': video_url,
'title': uppod_data.get('comment') or self._og_search_title(webpage),
'description': self._og_search_description(webpage),
'description': self._og_search_description(webpage, default=None),
'thumbnail': uppod_data.get('poster') or self._og_search_thumbnail(webpage),
'duration': int_or_none(self._og_search_property('video:duration', webpage)),
'duration': int_or_none(self._og_search_property(
'video:duration', webpage, default=None)),
}
if 'youtube.com/' in video_url:
info.update({


Loading…
Cancel
Save