diff options
author | Philip Xu <pyx@xrefactor.com> | 2016-10-14 14:12:06 -0400 |
---|---|---|
committer | Philip Xu <pyx@xrefactor.com> | 2016-10-14 14:12:06 -0400 |
commit | 2e638d7bcae26ef3f8a9d707d49c897e19571a0e (patch) | |
tree | 46990c2c2208c3e942e2873a0207c678c6595ccb /youtube_dl/extractor | |
parent | b7f59a3bf69b5c935be085551d30ce4d0b8a97d4 (diff) |
Made optional fields optional
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/huajiao.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/youtube_dl/extractor/huajiao.py b/youtube_dl/extractor/huajiao.py index 352b48120..005b8068f 100644 --- a/youtube_dl/extractor/huajiao.py +++ b/youtube_dl/extractor/huajiao.py @@ -36,15 +36,18 @@ class HuajiaoIE(InfoExtractor): description = self._html_search_meta( 'description', webpage, 'description', fatal=False) + def get(section, field): + return feed.get(section, {}).get(field) + return { 'id': video_id, 'title': feed['feed']['formated_title'], 'description': description, - 'duration': parse_duration(feed['feed']['duration']), - 'thumbnail': feed['feed']['image'], - 'timestamp': parse_iso8601(feed['creatime'], ' '), - 'uploader': feed['author']['nickname'], - 'uploader_id': feed['author']['uid'], + 'duration': parse_duration(get('feed', 'duration')), + 'thumbnail': get('feed', 'image'), + 'timestamp': parse_iso8601(feed.get('creatime'), ' '), + 'uploader': get('author', 'nickname'), + 'uploader_id': get('author', 'uid'), 'formats': self._extract_m3u8_formats( feed['feed']['m3u8'], video_id, 'mp4', 'm3u8_native'), } |