diff options
| author | remitamine <remitamine@gmail.com> | 2015-08-07 10:01:18 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2015-08-07 10:01:18 +0100 | 
| commit | 6d30cf04db9c9662dbb30c2490e24eb5c6dca4c3 (patch) | |
| tree | fa315cb337094474207a2c9f6c7a8ff9f58f5235 /youtube_dl/extractor/dcn.py | |
| parent | cd6b555e19c601d575679dd29da0080eda7f8890 (diff) | |
[dcn] fix type and key errors
Diffstat (limited to 'youtube_dl/extractor/dcn.py')
| -rw-r--r-- | youtube_dl/extractor/dcn.py | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/youtube_dl/extractor/dcn.py b/youtube_dl/extractor/dcn.py index d44e8cef0..22ff35b56 100644 --- a/youtube_dl/extractor/dcn.py +++ b/youtube_dl/extractor/dcn.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals  from .common import InfoExtractor  from ..compat import compat_urllib_request +from ..utils import int_or_none  class DcnIE(InfoExtractor): @@ -16,7 +17,7 @@ class DcnIE(InfoExtractor):              'title': 'رحلة العمر : الحلقة 1',              'description': 'في هذه الحلقة من برنامج رحلة العمر يقدّم الدكتور عمر عبد الكافي تبسيطاً لمناسك الحج والعمرة ويجيب مباشرة على استفسارات حجاج بيت الله الحرام بخصوص مناسك الحج والعمرة\n1',              'thumbnail': 'http://admin.mangomolo.com/analytics/uploads/71/images/media/2/2cefc09d7bec80afa754682f40e49503.jpg', -            'duration': '2041' +            'duration': 2041          },          'params': {              # m3u8 download @@ -32,9 +33,9 @@ class DcnIE(InfoExtractor):          )          json_data = self._download_json(request, video_id)          title = json_data['title_ar'] -        thumbnail = 'http://admin.mangomolo.com/analytics/' + json_data['img'] -        duration = json_data['duration'] -        description = json_data['description_ar'] +        thumbnail = 'http://admin.mangomolo.com/analytics/' + json_data.get('img') +        duration = int_or_none(json_data.get('duration')) +        description = json_data.get('description_ar')          webpage = self._download_webpage(              'http://admin.mangomolo.com/analytics/index.php/customers/embed/video?id=' + json_data['id'] + '&user_id=' + json_data['user_id'] + '&countries=Q0M=&w=100%&h=100%&filter=DENY&signature=' + json_data['signature'],              video_id  | 
