[rbmaradio] Fixed extractor

pull/10223/merge
Petr Zvoníček 8 years ago committed by Sergey M․
parent 77426a087b
commit affaea0688
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -1,55 +1,46 @@
# encoding: utf-8 # encoding: utf-8
from __future__ import unicode_literals from __future__ import unicode_literals
import json
import re
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import ( from ..utils import (
ExtractorError, clean_html
) )
class RBMARadioIE(InfoExtractor): class RBMARadioIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/(?P<videoID>[^/]+)$' _VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/[^/]+/episodes/(?P<id>[^/]+)$'
_TEST = { _TEST = {
'url': 'http://www.rbmaradio.com/shows/ford-lopatin-live-at-primavera-sound-2011', 'url': 'https://www.rbmaradio.com/shows/main-stage/episodes/ford-lopatin-live-at-primavera-sound-2011',
'md5': '6bc6f9bcb18994b4c983bc3bf4384d95', 'md5': '6bc6f9bcb18994b4c983bc3bf4384d95',
'info_dict': { 'info_dict': {
'id': 'ford-lopatin-live-at-primavera-sound-2011', 'id': 'ford-lopatin-live-at-primavera-sound-2011',
'ext': 'mp3', 'ext': 'mp3',
'uploader_id': 'ford-lopatin',
'location': 'Spain',
'description': 'Joel Ford and Daniel Oneohtrix Point Never Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.', 'description': 'Joel Ford and Daniel Oneohtrix Point Never Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.',
'uploader': 'Ford & Lopatin', 'title': 'Ford & Lopatin - Main Stage',
'title': 'Live at Primavera Sound 2011',
}, },
} }
def _real_extract(self, url): def _real_extract(self, url):
m = re.match(self._VALID_URL, url) video_id = self._match_id(url)
video_id = m.group('videoID')
webpage = self._download_webpage(url, video_id) webpage = self._download_webpage(url, video_id)
json_data = self._search_regex(r'<script>window\.__INITIAL_STATE__\s*=\s*(.+?)</script>',
webpage, 'json data')
data = self._parse_json(json_data, video_id)
json_data = self._search_regex(r'window\.gon.*?gon\.show=(.+?);$', item = None
webpage, 'json data', flags=re.MULTILINE) for episode in data['episodes']:
items = data['episodes'][episode]
try: if video_id in items:
data = json.loads(json_data) item = items[video_id]
except ValueError as e:
raise ExtractorError('Invalid JSON: ' + str(e))
video_url = data['akamai_url'] + '&cbr=256' video_url = item['audioURL'] + '?cbr=256'
return { return {
'id': video_id, 'id': video_id,
'url': video_url, 'url': video_url,
'title': data['title'], 'title': item.get('title') + ' - ' + item.get('showTitle'),
'description': data.get('teaser_text'), 'description': clean_html(item.get('longTeaser')),
'location': data.get('country_of_origin'), 'thumbnail': self._proto_relative_url(item.get('imageURL', {}).get('landscape')),
'uploader': data.get('host', {}).get('name'), 'duration': item.get('duration'),
'uploader_id': data.get('host', {}).get('slug'),
'thumbnail': data.get('image', {}).get('large_url_2x'),
'duration': data.get('duration'),
} }

Loading…
Cancel
Save