mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-31 15:50:10 +09:00
[radioplay] new extractor
Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
This commit is contained in:
parent
1e8e5d5238
commit
4d3e895708
@ -949,6 +949,7 @@ from .radiode import RadioDeIE
|
|||||||
from .radiojavan import RadioJavanIE
|
from .radiojavan import RadioJavanIE
|
||||||
from .radiobremen import RadioBremenIE
|
from .radiobremen import RadioBremenIE
|
||||||
from .radiofrance import RadioFranceIE
|
from .radiofrance import RadioFranceIE
|
||||||
|
from .radioplay import RadioplayPodcastIE
|
||||||
from .rai import (
|
from .rai import (
|
||||||
RaiPlayIE,
|
RaiPlayIE,
|
||||||
RaiPlayLiveIE,
|
RaiPlayLiveIE,
|
||||||
|
46
youtube_dl/extractor/radioplay.py
Normal file
46
youtube_dl/extractor/radioplay.py
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
from ..utils import (
|
||||||
|
int_or_none,
|
||||||
|
js_to_json,
|
||||||
|
parse_iso8601,
|
||||||
|
unified_strdate,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class RadioplayPodcastIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?radioplay\.(?:se|no)/podcast/[^/]+/[^/]+/(?P<id>\d+)'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'https://radioplay.se/podcast/lilla-my/lyssna/2001126',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '2001126',
|
||||||
|
'ext': 'mp3',
|
||||||
|
'title': 'Kaktus till läraren',
|
||||||
|
'description': 'Lilla My ska köpa en "blomma" till sin lärare.',
|
||||||
|
'timestamp': 1549898100,
|
||||||
|
'upload_date': '20190211',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
player = self._parse_json(self._search_regex(
|
||||||
|
r'window\.__PRELOADED_STATE__\s*=\s*({.+})', webpage,
|
||||||
|
'player', default='{}'), video_id, transform_source=js_to_json)
|
||||||
|
video_info = player['player']['nowPlaying']
|
||||||
|
|
||||||
|
return {
|
||||||
|
'url': video_info['PodcastExtMediaUrl'],
|
||||||
|
'id': video_id,
|
||||||
|
'title': video_info['PodcastTitle'],
|
||||||
|
'description': video_info.get('PodcastDescription'),
|
||||||
|
'thumbnail': video_info.get('PodcastImageUrl'),
|
||||||
|
'release_date': unified_strdate(video_info.get('PodcastPublishDate')),
|
||||||
|
'timestamp': parse_iso8601(video_info.get('PodcastPublishDate'), ' '),
|
||||||
|
'duration': int_or_none(video_info.get('PodcastDuration')),
|
||||||
|
'channel': player.get('podcastsApi').get('data').get('channel').get('PodcastChannelTitle'),
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user