[pyvideo] Fix extraction (Closes #10468)
[youtube-dl] / youtube_dl / extractor / pyvideo.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import compat_str
7 from ..utils import int_or_none
8
9
10 class PyvideoIE(InfoExtractor):
11     _VALID_URL = r'https?://(?:www\.)?pyvideo\.org/(?P<category>[^/]+)/(?P<id>[^/?#&.]+)'
12
13     _TESTS = [{
14         'url': 'http://pyvideo.org/pycon-us-2013/become-a-logging-expert-in-30-minutes.html',
15         'info_dict': {
16             'id': 'become-a-logging-expert-in-30-minutes',
17         },
18         'playlist_count': 2,
19     }, {
20         'url': 'http://pyvideo.org/pygotham-2012/gloriajw-spotifywitherikbernhardsson182m4v.html',
21         'md5': '5fe1c7e0a8aa5570330784c847ff6d12',
22         'info_dict': {
23             'id': '2542',
24             'ext': 'm4v',
25             'title': 'Gloriajw-SpotifyWithErikBernhardsson182.m4v',
26         },
27     }]
28
29     def _real_extract(self, url):
30         mobj = re.match(self._VALID_URL, url)
31         category = mobj.group('category')
32         video_id = mobj.group('id')
33
34         entries = []
35
36         data = self._download_json(
37             'https://raw.githubusercontent.com/pyvideo/data/master/%s/videos/%s.json'
38             % (category, video_id), video_id, fatal=False)
39
40         if data:
41             print(data)
42             for video in data['videos']:
43                 video_url = video.get('url')
44                 if video_url:
45                     if video.get('type') == 'youtube':
46                         entries.append(self.url_result(video_url, 'Youtube'))
47                     else:
48                         entries.append({
49                             'id': compat_str(data.get('id') or video_id),
50                             'url': video_url,
51                             'title': data['title'],
52                             'description': data.get('description') or data.get('summary'),
53                             'thumbnail': data.get('thumbnail_url'),
54                             'duration': int_or_none(data.get('duration')),
55                         })
56         else:
57             webpage = self._download_webpage(url, video_id)
58             title = self._og_search_title(webpage)
59             media_urls = self._search_regex(
60                 r'(?s)Media URL:(.+?)</li>', webpage, 'media urls')
61             for m in re.finditer(
62                     r'<a[^>]+href=(["\'])(?P<url>http.+?)\1', media_urls):
63                 media_url = m.group('url')
64                 if re.match(r'https?://www\.youtube\.com/watch\?v=.*', media_url):
65                     entries.append(self.url_result(media_url, 'Youtube'))
66                 else:
67                     entries.append({
68                         'id': video_id,
69                         'url': media_url,
70                         'title': title,
71                     })
72
73         return self.playlist_result(entries, video_id)