Made optional fields optional
authorPhilip Xu <pyx@xrefactor.com>
Fri, 14 Oct 2016 18:12:06 +0000 (14:12 -0400)
committerPhilip Xu <pyx@xrefactor.com>
Fri, 14 Oct 2016 18:12:06 +0000 (14:12 -0400)
youtube_dl/extractor/huajiao.py

index 352b481202720fc83dd1d2c0abc65f2528b971ce..005b8068f1ffbab1a7c1f533e815a5808669ccb9 100644 (file)
@@ -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'),
         }