mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[dcn] fix type and key errors
This commit is contained in:
parent
cd6b555e19
commit
6d30cf04db
@ -3,6 +3,7 @@
|
||||
|
||||
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 @@ def _real_extract(self, url):
|
||||
)
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user