aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ccc.py
blob: 809725f1251ddffddca399dd3c36f6d873779ba1 (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
import re
import json

from .common import InfoExtractor
from ..utils import (
    unified_strdate,
)

class ComCarCoffIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?comediansincarsgettingcoffee\.com/(?P<id>[a-z0-9\-]+)/?'
    _TESTS = [
        {
            'url': 'http://comediansincarsgettingcoffee.com/miranda-sings-happy-thanksgiving-miranda/',
            'info_dict': {
                'id': 'miranda-sings-happy-thanksgiving-miranda',
                'upload_date': '20141127',
                'title': 'Happy Thanksgiving Miranda',
                'description': 'Jerry Seinfeld and his special guest Miranda Sings cruise around town in search of coffee, complaining and apologizing along the way.',
                'thumbnail': 'http://ccc.crackle.com/images/s5e4_thumb.jpg',
            },
        }
    ]

    def _real_extract(self, url):
        display_id = self._match_id(url)
        webpage = self._download_webpage(url, display_id)

        full_data = json.loads(self._search_regex(
            r'<script type="application/json" id="videoData">(?P<json>.+?)</script>',
            webpage, 'json'))

        video_id = full_data['activeVideo']['video']
        video_data = full_data['videos'][video_id]

        return {
            'id': video_id,
            'display_id': display_id,
            'title': video_data['title'],
            'description': video_data['description'],
            # XXX: the original datum is a full ISO timestamp... why convert it to a worse format?
            'upload_date': unified_strdate(video_data['pubDate']),
            'thumbnail': video_data['images']['thumb'],
            # XXX: what do we do with video_data['images']['poster']?
            'formats': self._extract_m3u8_formats(video_data['mediaUrl'], video_id),
        }