aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rbmaradio.py
blob: 92f0d8f76933c124aea055dba046905642d7f8f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# encoding: utf-8
from __future__ import unicode_literals

from .common import InfoExtractor
from ..utils import (
    clean_html
)


class RBMARadioIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/[^/]+/episodes/(?P<id>[^/]+)$'
    _TEST = {
        'url': 'https://www.rbmaradio.com/shows/main-stage/episodes/ford-lopatin-live-at-primavera-sound-2011',
        'md5': '6bc6f9bcb18994b4c983bc3bf4384d95',
        'info_dict': {
            'id': 'ford-lopatin-live-at-primavera-sound-2011',
            'ext': 'mp3',
            'description': 'Joel Ford and Daniel ’Oneohtrix Point Never’ Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.',
            'title': 'Ford & Lopatin - Main Stage',
        },
    }

    def _real_extract(self, url):
        video_id = self._match_id(url)

        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)

        item = None
        for episode in data['episodes']:
            items = data['episodes'][episode]
            if video_id in items:
                item = items[video_id]

        video_url = item['audioURL'] + '?cbr=256'

        return {
            'id': video_id,
            'url': video_url,
            'title': item.get('title') + ' - ' + item.get('showTitle'),
            'description': clean_html(item.get('longTeaser')),
            'thumbnail': self._proto_relative_url(item.get('imageURL', {}).get('landscape')),
            'duration': item.get('duration'),
        }