1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 20:17:15 +08:00

[NRKRadio] Add new extractor

This commit is contained in:
slangangular 2015-07-12 13:55:25 +02:00
parent 53429e6551
commit 20f487fd57
2 changed files with 34 additions and 0 deletions

View File

@ -395,6 +395,7 @@ from .nrk import (
NRKIE, NRKIE,
NRKPlaylistIE, NRKPlaylistIE,
NRKTVIE, NRKTVIE,
NRKRadioIE,
) )
from .ntvde import NTVDeIE from .ntvde import NTVDeIE
from .ntvru import NTVRuIE from .ntvru import NTVRuIE

View File

@ -288,3 +288,36 @@ class NRKTVIE(InfoExtractor):
'formats': formats, 'formats': formats,
'subtitles': subtitles, 'subtitles': subtitles,
} }
class NRKRadioIE(InfoExtractor):
_VALID_URL = r'(?P<baseurl>https?://radio\.nrk(?:super)?\.no/)(?:serie/[^/]+|program)/(?P<id>[a-zA-Z]{4}\d{8})(?:/\d{2}-\d{2}-\d{4})?(?:#del=(?P<part_id>\d+))?'
_TEST = {
'url': 'https://radio.nrk.no/serie/dagsnytt/NPUB21019315/12-07-2015',
'md5': '988d14c27498759cf1b762aa5cea9e42',
'info_dict': {
'id': 'NPUB21019315',
'ext': 'mp4a',
'title': 'NRK Radio - Dagsnytt - 12.07.2015',
'description': 'Nyhetssending',
}
}
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(r'<title>(.*?)</title>', webpage, 'title')
desc = self._html_search_meta('description', webpage, 'description')
m3u8_url = re.search(r'data-hls-media="([^"]+)"', webpage)
formats = self._extract_m3u8_formats(m3u8_url.group(1), video_id, 'mp4a')
return {
'id': video_id,
'title': title,
'description': desc,
'formats': formats,
}