]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/bet.py
1 from __future__
import unicode_literals
3 from .mtv
import MTVServicesInfoExtractor
4 from ..utils
import unified_strdate
7 class BetIE(MTVServicesInfoExtractor
):
8 _VALID_URL
= r
'https?://(?:www\.)?bet\.com/(?:[^/]+/)+(?P<id>.+?)\.html'
11 'url': 'http://www.bet.com/news/politics/2014/12/08/in-bet-exclusive-obama-talks-race-and-racism.html',
13 'id': '07e96bd3-8850-3051-b856-271b457f0ab8',
14 'display_id': 'in-bet-exclusive-obama-talks-race-and-racism',
16 'title': 'A Conversation With President Obama',
17 'description': 'President Obama urges persistence in confronting racism and bias.',
19 'upload_date': '20141208',
20 'thumbnail': r
're:(?i)^https?://.*\.jpg$',
27 'skip_download': True,
31 'url': 'http://www.bet.com/video/news/national/2014/justice-for-ferguson-a-community-reacts.html',
33 'id': '9f516bf1-7543-39c4-8076-dd441b459ba9',
34 'display_id': 'justice-for-ferguson-a-community-reacts',
36 'title': 'Justice for Ferguson: A Community Reacts',
37 'description': 'A BET News special.',
39 'upload_date': '20141125',
40 'thumbnail': r
're:(?i)^https?://.*\.jpg$',
47 'skip_download': True,
52 _FEED_URL
= "http://feeds.mtvnservices.com/od/feed/bet-mrss-player"
54 def _get_feed_query(self
, uri
):
59 def _extract_mgid(self
, webpage
):
60 return self
._search
_regex
(r
'data-uri="([^"]+)', webpage
, 'mgid')
62 def _real_extract(self
, url
):
63 display_id
= self
._match
_id
(url
)
65 webpage
= self
._download
_webpage
(url
, display_id
)
66 mgid
= self
._extract
_mgid
(webpage
)
67 videos_info
= self
._get
_videos
_info
(mgid
)
69 info_dict
= videos_info
['entries'][0]
71 upload_date
= unified_strdate(self
._html
_search
_meta
('date', webpage
))
72 description
= self
._html
_search
_meta
('description', webpage
)
75 'display_id': display_id
,
76 'description': description
,
77 'upload_date': upload_date
,