mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 18:08:00 +09:00
[aljazeera] Add extractor (closes #4487)
This commit is contained in:
parent
734ea11e3c
commit
bb18d787b5
@ -5,6 +5,7 @@ from .academicearth import AcademicEarthCourseIE
|
|||||||
from .addanime import AddAnimeIE
|
from .addanime import AddAnimeIE
|
||||||
from .adultswim import AdultSwimIE
|
from .adultswim import AdultSwimIE
|
||||||
from .aftonbladet import AftonbladetIE
|
from .aftonbladet import AftonbladetIE
|
||||||
|
from .aljazeera import AlJazeeraIE
|
||||||
from .anitube import AnitubeIE
|
from .anitube import AnitubeIE
|
||||||
from .anysex import AnySexIE
|
from .anysex import AnySexIE
|
||||||
from .aol import AolIE
|
from .aol import AolIE
|
||||||
|
32
youtube_dl/extractor/aljazeera.py
Normal file
32
youtube_dl/extractor/aljazeera.py
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
|
class AlJazeeraIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'http://www\.aljazeera\.com/programmes/.*?/(?P<id>[^/]+)\.html'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.aljazeera.com/programmes/the-slum/2014/08/deliverance-201482883754237240.html',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '3792260579001',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'The Slum - Episode 1: Deliverance',
|
||||||
|
'description': 'As a birth attendant advocating for family planning, Remy is on the frontline of Tondo\'s battle with overcrowding.',
|
||||||
|
'uploader': 'Al Jazeera English',
|
||||||
|
},
|
||||||
|
'add_ie': ['Brightcove'],
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
program_name = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, program_name)
|
||||||
|
brightcove_id = self._search_regex(
|
||||||
|
r'RenderPagesVideo\(\'(.+?)\'', webpage, 'brightcove id')
|
||||||
|
|
||||||
|
return {
|
||||||
|
'_type': 'url',
|
||||||
|
'url':
|
||||||
|
'http://c.brightcove.com/services/viewer/federated_f9?'
|
||||||
|
'&playerKey=AQ~~%2CAAAAmtVJIFk~%2CTVGOQ5ZTwJbeMWnq5d_H4MOM57xfzApc'
|
||||||
|
'&%40videoPlayer={0}'.format(brightcove_id),
|
||||||
|
'ie_key': 'Brightcove',
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user