mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[people] Add extractor
This commit is contained in:
parent
81215d5652
commit
f77970765a
@ -559,6 +559,7 @@
|
||||
from .parliamentliveuk import ParliamentLiveUKIE
|
||||
from .patreon import PatreonIE
|
||||
from .pbs import PBSIE
|
||||
from .people import PeopleIE
|
||||
from .periscope import PeriscopeIE
|
||||
from .philharmoniedeparis import PhilharmonieDeParisIE
|
||||
from .phoenix import PhoenixIE
|
||||
|
33
youtube_dl/extractor/people.py
Normal file
33
youtube_dl/extractor/people.py
Normal file
@ -0,0 +1,33 @@
|
||||
# coding: utf-8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from .common import InfoExtractor
|
||||
|
||||
|
||||
class PeopleIE(InfoExtractor):
|
||||
_VALID_URL = r'https?://(?:www\.)?people\.com/people/videos/0,,(?P<id>\d+),00\.html'
|
||||
|
||||
_TEST = {
|
||||
'url': 'http://www.people.com/people/videos/0,,20995451,00.html',
|
||||
'info_dict': {
|
||||
'id': 'ref:20995451',
|
||||
'ext': 'mp4',
|
||||
'title': 'Astronaut Love Triangle Victim Speaks Out: “The Crime in 2007 Hasn’t Defined Us”',
|
||||
'description': 'Colleen Shipman speaks to PEOPLE for the first time about life after the attack',
|
||||
'thumbnail': 're:^https?://.*\.jpg',
|
||||
'duration': 246.318,
|
||||
'timestamp': 1458720585,
|
||||
'upload_date': '20160323',
|
||||
'uploader_id': '416418724',
|
||||
},
|
||||
'params': {
|
||||
# m3u8 download
|
||||
'skip_download': True,
|
||||
},
|
||||
'add_ie': ['BrightcoveNew'],
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
return self.url_result(
|
||||
'http://players.brightcove.net/416418724/default_default/index.html?videoId=ref:%s'
|
||||
% self._match_id(url), 'BrightcoveNew')
|
Loading…
Reference in New Issue
Block a user