]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/imgur.py
ecc958a1717d35ad37cc68c3b44147f3d0db6161
[youtubedl] / youtube_dl / extractor / imgur.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..utils import (
7 int_or_none,
8 js_to_json,
9 mimetype2ext,
10 ExtractorError,
11 )
12
13
14 class ImgurIE(InfoExtractor):
15 _VALID_URL = r'https?://(?:i\.)?imgur\.com/(?:(?:gallery|(?:topic|r)/[^/]+)/)?(?P<id>[a-zA-Z0-9]{6,})(?:[/?#&]+|\.[a-z0-9]+)?$'
16
17 _TESTS = [{
18 'url': 'https://i.imgur.com/A61SaA1.gifv',
19 'info_dict': {
20 'id': 'A61SaA1',
21 'ext': 'mp4',
22 'title': 're:Imgur GIF$|MRW gifv is up and running without any bugs$',
23 'description': 'Imgur: The magic of the Internet',
24 },
25 }, {
26 'url': 'https://imgur.com/A61SaA1',
27 'info_dict': {
28 'id': 'A61SaA1',
29 'ext': 'mp4',
30 'title': 're:Imgur GIF$|MRW gifv is up and running without any bugs$',
31 'description': 'Imgur: The magic of the Internet',
32 },
33 }, {
34 'url': 'https://imgur.com/gallery/YcAQlkx',
35 'info_dict': {
36 'id': 'YcAQlkx',
37 'ext': 'mp4',
38 'title': 'Classic Steve Carell gif...cracks me up everytime....damn the repost downvotes....',
39 }
40 }, {
41 'url': 'http://imgur.com/topic/Funny/N8rOudd',
42 'only_matching': True,
43 }, {
44 'url': 'http://imgur.com/r/aww/VQcQPhM',
45 'only_matching': True,
46 }, {
47 'url': 'https://i.imgur.com/crGpqCV.mp4',
48 'only_matching': True,
49 }]
50
51 def _real_extract(self, url):
52 video_id = self._match_id(url)
53 gifv_url = 'https://i.imgur.com/{id}.gifv'.format(id=video_id)
54 webpage = self._download_webpage(gifv_url, video_id)
55
56 width = int_or_none(self._og_search_property(
57 'video:width', webpage, default=None))
58 height = int_or_none(self._og_search_property(
59 'video:height', webpage, default=None))
60
61 video_elements = self._search_regex(
62 r'(?s)<div class="video-elements">(.*?)</div>',
63 webpage, 'video elements', default=None)
64 if not video_elements:
65 raise ExtractorError(
66 'No sources found for video %s. Maybe an image?' % video_id,
67 expected=True)
68
69 formats = []
70 for m in re.finditer(r'<source\s+src="(?P<src>[^"]+)"\s+type="(?P<type>[^"]+)"', video_elements):
71 formats.append({
72 'format_id': m.group('type').partition('/')[2],
73 'url': self._proto_relative_url(m.group('src')),
74 'ext': mimetype2ext(m.group('type')),
75 'acodec': 'none',
76 'width': width,
77 'height': height,
78 'http_headers': {
79 'User-Agent': 'youtube-dl (like wget)',
80 },
81 })
82
83 gif_json = self._search_regex(
84 r'(?s)var\s+videoItem\s*=\s*(\{.*?\})',
85 webpage, 'GIF code', fatal=False)
86 if gif_json:
87 gifd = self._parse_json(
88 gif_json, video_id, transform_source=js_to_json)
89 formats.append({
90 'format_id': 'gif',
91 'preference': -10,
92 'width': width,
93 'height': height,
94 'ext': 'gif',
95 'acodec': 'none',
96 'vcodec': 'gif',
97 'container': 'gif',
98 'url': self._proto_relative_url(gifd['gifUrl']),
99 'filesize': gifd.get('size'),
100 'http_headers': {
101 'User-Agent': 'youtube-dl (like wget)',
102 },
103 })
104
105 self._sort_formats(formats)
106
107 return {
108 'id': video_id,
109 'formats': formats,
110 'description': self._og_search_description(webpage, default=None),
111 'title': self._og_search_title(webpage),
112 }
113
114
115 class ImgurAlbumIE(InfoExtractor):
116 _VALID_URL = r'https?://(?:i\.)?imgur\.com/(?:(?:a|gallery|topic/[^/]+)/)?(?P<id>[a-zA-Z0-9]{5})(?:[/?#&]+)?$'
117
118 _TESTS = [{
119 'url': 'http://imgur.com/gallery/Q95ko',
120 'info_dict': {
121 'id': 'Q95ko',
122 },
123 'playlist_count': 25,
124 }, {
125 'url': 'http://imgur.com/a/j6Orj',
126 'only_matching': True,
127 }, {
128 'url': 'http://imgur.com/topic/Aww/ll5Vk',
129 'only_matching': True,
130 }]
131
132 def _real_extract(self, url):
133 album_id = self._match_id(url)
134
135 album_images = self._download_json(
136 'http://imgur.com/gallery/%s/album_images/hit.json?all=true' % album_id,
137 album_id, fatal=False)
138
139 if album_images:
140 data = album_images.get('data')
141 if data and isinstance(data, dict):
142 images = data.get('images')
143 if images and isinstance(images, list):
144 entries = [
145 self.url_result('http://imgur.com/%s' % image['hash'])
146 for image in images if image.get('hash')]
147 return self.playlist_result(entries, album_id)
148
149 # Fallback to single video
150 return self.url_result('http://imgur.com/%s' % album_id, ImgurIE.ie_key())