[funnyordie] Add articles URL test
[youtube-dl] / youtube_dl / extractor / funnyordie.py
1 from __future__ import unicode_literals
2
3 import json
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import ExtractorError
8
9
10 class FunnyOrDieIE(InfoExtractor):
11     _VALID_URL = r'https?://(?:www\.)?funnyordie\.com/(?P<type>embed|articles|videos)/(?P<id>[0-9a-f]+)(?:$|[?#/])'
12     _TESTS = [{
13         'url': 'http://www.funnyordie.com/videos/0732f586d7/heart-shaped-box-literal-video-version',
14         'md5': 'bcd81e0c4f26189ee09be362ad6e6ba9',
15         'info_dict': {
16             'id': '0732f586d7',
17             'ext': 'mp4',
18             'title': 'Heart-Shaped Box: Literal Video Version',
19             'description': 'md5:ea09a01bc9a1c46d9ab696c01747c338',
20             'thumbnail': 're:^http:.*\.jpg$',
21         },
22     }, {
23         'url': 'http://www.funnyordie.com/embed/e402820827',
24         'md5': '29f4c5e5a61ca39dfd7e8348a75d0aad',
25         'info_dict': {
26             'id': 'e402820827',
27             'ext': 'mp4',
28             'title': 'Please Use This Song (Jon Lajoie)',
29             'description': 'Please use this to sell something.  www.jonlajoie.com',
30             'thumbnail': 're:^http:.*\.jpg$',
31         },
32     }, {
33         'url': 'http://www.funnyordie.com/articles/ebf5e34fc8/10-hours-of-walking-in-nyc-as-a-man',
34         'only_matching': True,
35     }]
36
37     def _real_extract(self, url):
38         mobj = re.match(self._VALID_URL, url)
39
40         video_id = mobj.group('id')
41         webpage = self._download_webpage(url, video_id)
42
43         links = re.findall(r'<source src="([^"]+/v)[^"]+\.([^"]+)" type=\'video', webpage)
44         if not links:
45             raise ExtractorError('No media links available for %s' % video_id)
46
47         links.sort(key=lambda link: 1 if link[1] == 'mp4' else 0)
48
49         bitrates = self._html_search_regex(r'<source src="[^"]+/v,((?:\d+,)+)\.mp4\.csmil', webpage, 'video bitrates')
50         bitrates = [int(b) for b in bitrates.rstrip(',').split(',')]
51         bitrates.sort()
52
53         formats = []
54
55         for bitrate in bitrates:
56             for link in links:
57                 formats.append({
58                     'url': '%s%d.%s' % (link[0], bitrate, link[1]),
59                     'format_id': '%s-%d' % (link[1], bitrate),
60                     'vbr': bitrate,
61                 })
62
63         post_json = self._search_regex(
64             r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
65         post = json.loads(post_json)
66
67         return {
68             'id': video_id,
69             'title': post['name'],
70             'description': post.get('description'),
71             'thumbnail': post.get('picture'),
72             'formats': formats,
73         }