aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pandoratv.py
blob: a0a0c114a35c9d504cd6711bc7453b7f70e751f8 (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
47
48
49
50
51
52
53
54
55
56
# encoding: utf-8
from __future__ import unicode_literals

from .common import InfoExtractor

from ..compat import (
    compat_urlparse,
)
from ..utils import (
    ExtractorError,
)


class PandoraTVIE(InfoExtractor):
    _VALID_URL = r'http://(?:.+?\.)?channel.pandora.tv/channel/video.ptv\?'
    _TESTS = [{
        'url': 'http://jp.channel.pandora.tv/channel/video.ptv?c1=&prgid=53294230&ch_userid=mikakim&ref=main&lot=cate_01_2',
        'info_dict': {
            'description': '\u982d\u3092\u64ab\u3067\u3066\u304f\u308c\u308b\uff1f',
            'ext': 'mp4',
            'id': '53294230',
            'title': '\u982d\u3092\u64ab\u3067\u3066\u304f\u308c\u308b\uff1f',
            'upload_date': '20151218',
        }
    }]


    def _real_extract(self, url):
        qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
        video_id = qs.get('prgid', [None])[0]
        user_id = qs.get('ch_userid', [None])[0]
        if any(not f for f in (video_id, user_id,)):
            raise ExtractorError('Invalid URL', expected=True)

        data_url ='http://m.pandora.tv/?c=view&m=viewJsonApi&ch_userid={userid}&prgid={prgid}'.format(userid=user_id,prgid=video_id)
        data = self._download_json(data_url, video_id)
        info = data['data']['rows']['vod_play_info']['result']

        formats = []
        for format_id in sorted([k for k in info if k.startswith('v') and k.endswith('Url') and info[k]]):
            formats.append({
                'format_id': format_id,
                'url': info[format_id],
                'ext': 'mp4',
                'height': int(format_id[1:-3]),
            })

        return {
            'description': info['body'],
            'thumbnail': info['thumbnail'],
            'formats': formats,
            'id': video_id,
            'title': info['subject'],
            'upload_date': info['fid'][:8],
            'view_count': info['hit'],
        }