]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/rutube.py
[nhl] Modernize
[yt-dlp.git] / youtube_dl / extractor / rutube.py
CommitLineData
bfd14b1b 1# encoding: utf-8
1547c8cc 2from __future__ import unicode_literals
3
bfd14b1b 4import re
1547c8cc 5import itertools
bfd14b1b
JMF
6
7from .common import InfoExtractor
8from ..utils import (
bfd14b1b 9 compat_str,
a2fb2a21 10 unified_strdate,
bfd14b1b
JMF
11 ExtractorError,
12)
13
14
15class RutubeIE(InfoExtractor):
1547c8cc 16 IE_NAME = 'rutube'
37e3b90d 17 IE_DESC = 'Rutube videos'
e3a9f32f 18 _VALID_URL = r'https?://rutube\.ru/video/(?P<id>[\da-z]{32})'
bfd14b1b
JMF
19
20 _TEST = {
1547c8cc 21 'url': 'http://rutube.ru/video/3eac3b4561676c17df9132a9a1e62e3e/',
1547c8cc 22 'info_dict': {
c72477bd
S
23 'id': '3eac3b4561676c17df9132a9a1e62e3e',
24 'ext': 'mp4',
1547c8cc 25 'title': 'Раненный кенгуру забежал в аптеку',
00ff8f92 26 'description': 'http://www.ntdtv.ru ',
27 'duration': 80,
1547c8cc 28 'uploader': 'NTDRussian',
29 'uploader_id': '29790',
00ff8f92 30 'upload_date': '20131016',
bfd14b1b 31 },
1547c8cc 32 'params': {
bfd14b1b 33 # It requires ffmpeg (m3u8 download)
1547c8cc 34 'skip_download': True,
bfd14b1b
JMF
35 },
36 }
37
bfd14b1b
JMF
38 def _real_extract(self, url):
39 mobj = re.match(self._VALID_URL, url)
e3a9f32f 40 video_id = mobj.group('id')
18c95c1a
JMF
41
42 video = self._download_json(
c72477bd
S
43 'http://rutube.ru/api/video/%s/?format=json' % video_id,
44 video_id, 'Downloading video JSON')
18c95c1a 45
bfd14b1b 46 # Some videos don't have the author field
d7f1e7c8
S
47 author = video.get('author') or {}
48
49 options = self._download_json(
68905742 50 'http://rutube.ru/api/play/options/%s/?format=json' % video_id,
d7f1e7c8
S
51 video_id, 'Downloading options JSON')
52
53 m3u8_url = options['video_balancer'].get('m3u8')
bfd14b1b 54 if m3u8_url is None:
1547c8cc 55 raise ExtractorError('Couldn\'t find m3u8 manifest url')
bfd14b1b
JMF
56
57 return {
a2fb2a21 58 'id': video['id'],
59 'title': video['title'],
60 'description': video['description'],
61 'duration': video['duration'],
62 'view_count': video['hits'],
bfd14b1b
JMF
63 'url': m3u8_url,
64 'ext': 'mp4',
a2fb2a21 65 'thumbnail': video['thumbnail_url'],
bfd14b1b
JMF
66 'uploader': author.get('name'),
67 'uploader_id': compat_str(author['id']) if author else None,
a2fb2a21 68 'upload_date': unified_strdate(video['created_ts']),
69 'age_limit': 18 if video['is_adult'] else 0,
bfd14b1b 70 }
1547c8cc 71
72
73class RutubeChannelIE(InfoExtractor):
74 IE_NAME = 'rutube:channel'
37e3b90d 75 IE_DESC = 'Rutube channels'
1547c8cc 76 _VALID_URL = r'http://rutube\.ru/tags/video/(?P<id>\d+)'
77
78 _PAGE_TEMPLATE = 'http://rutube.ru/api/tags/video/%s/?page=%s&format=json'
79
80 def _extract_videos(self, channel_id, channel_title=None):
81 entries = []
82 for pagenum in itertools.count(1):
18c95c1a 83 page = self._download_json(
37e3b90d
PH
84 self._PAGE_TEMPLATE % (channel_id, pagenum),
85 channel_id, 'Downloading page %s' % pagenum)
1547c8cc 86 results = page['results']
37e3b90d
PH
87 if not results:
88 break
a2fb2a21 89 entries.extend(self.url_result(result['video_url'], 'Rutube') for result in results)
37e3b90d
PH
90 if not page['has_next']:
91 break
1547c8cc 92 return self.playlist_result(entries, channel_id, channel_title)
93
94 def _real_extract(self, url):
95 mobj = re.match(self._VALID_URL, url)
96 channel_id = mobj.group('id')
97 return self._extract_videos(channel_id)
98
99
100class RutubeMovieIE(RutubeChannelIE):
101 IE_NAME = 'rutube:movie'
37e3b90d 102 IE_DESC = 'Rutube movies'
1547c8cc 103 _VALID_URL = r'http://rutube\.ru/metainfo/tv/(?P<id>\d+)'
104
105 _MOVIE_TEMPLATE = 'http://rutube.ru/api/metainfo/tv/%s/?format=json'
106 _PAGE_TEMPLATE = 'http://rutube.ru/api/metainfo/tv/%s/video?page=%s&format=json'
107
108 def _real_extract(self, url):
109 mobj = re.match(self._VALID_URL, url)
110 movie_id = mobj.group('id')
18c95c1a 111 movie = self._download_json(
37e3b90d
PH
112 self._MOVIE_TEMPLATE % movie_id, movie_id,
113 'Downloading movie JSON')
1547c8cc 114 movie_name = movie['name']
e3a9f32f 115 return self._extract_videos(movie_id, movie_name)
116
117
118class RutubePersonIE(RutubeChannelIE):
119 IE_NAME = 'rutube:person'
120 IE_DESC = 'Rutube person videos'
121 _VALID_URL = r'http://rutube\.ru/video/person/(?P<id>\d+)'
122
37e3b90d 123 _PAGE_TEMPLATE = 'http://rutube.ru/api/video/person/%s/?page=%s&format=json'