]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/ninegag.py
[/__init__] Add another cute search example
[yt-dlp.git] / youtube_dl / extractor / ninegag.py
CommitLineData
ed850070
JMF
1from __future__ import unicode_literals
2
7fc3fa05 3import re
d7666dff 4import json
7fc3fa05
PH
5
6from .common import InfoExtractor
d7666dff 7from ..utils import str_to_int
7fc3fa05
PH
8
9
10class NineGagIE(InfoExtractor):
11 IE_NAME = '9gag'
4be9f8c8
PH
12 _VALID_URL = r'''(?x)^https?://(?:www\.)?9gag\.tv/
13 (?:
14 v/(?P<numid>[0-9]+)|
15 p/(?P<id>[a-zA-Z0-9]+)/(?P<display_id>[^?#/]+)
16 )
17 '''
7fc3fa05 18
4be9f8c8 19 _TESTS = [{
ed850070 20 "url": "http://9gag.tv/v/1912",
ed850070 21 "info_dict": {
d2983ccb
PH
22 "id": "1912",
23 "ext": "mp4",
ed850070 24 "description": "This 3-minute video will make you smile and then make you feel untalented and insignificant. Anyway, you should share this awesomeness. (Thanks, Dino!)",
84769e70 25 "title": "\"People Are Awesome 2013\" Is Absolutely Awesome",
e9404524
PH
26 'uploader_id': 'UCdEH6EjDKwtTe-sO2f0_1XA',
27 'uploader': 'CompilationChannel',
28 'upload_date': '20131110',
84769e70
PH
29 "view_count": int,
30 "thumbnail": "re:^https?://",
7fc3fa05 31 },
ed850070 32 'add_ie': ['Youtube']
9e1a5b84 33 }, {
4be9f8c8
PH
34 'url': 'http://9gag.tv/p/KklwM/alternate-banned-opening-scene-of-gravity?ref=fsidebar',
35 'info_dict': {
36 'id': 'KklwM',
37 'ext': 'mp4',
38 'display_id': 'alternate-banned-opening-scene-of-gravity',
39 "description": "While Gravity was a pretty awesome movie already, YouTuber Krishna Shenoi came up with a way to improve upon it, introducing a much better solution to Sandra Bullock's seemingly endless tumble in space. The ending is priceless.",
40 'title': "Banned Opening Scene Of \"Gravity\" That Changes The Whole Movie",
e9404524
PH
41 'uploader': 'Krishna Shenoi',
42 'upload_date': '20140401',
43 'uploader_id': 'krishnashenoi93',
4be9f8c8
PH
44 },
45 }]
7fc3fa05
PH
46
47 def _real_extract(self, url):
48 mobj = re.match(self._VALID_URL, url)
4be9f8c8
PH
49 video_id = mobj.group('numid') or mobj.group('id')
50 display_id = mobj.group('display_id') or video_id
7fc3fa05 51
4be9f8c8 52 webpage = self._download_webpage(url, display_id)
7fc3fa05 53
d7666dff 54 post_view = json.loads(self._html_search_regex(
1aac0379 55 r'var postView = new app\.PostView\({\s*post:\s*({.+?}),\s*posts:\s*prefetchedCurrentPost', webpage, 'post view'))
d7666dff
S
56
57 youtube_id = post_view['videoExternalId']
58 title = post_view['title']
59 description = post_view['description']
60 view_count = str_to_int(post_view['externalView'])
61 thumbnail = post_view.get('thumbnail_700w') or post_view.get('ogImageUrl') or post_view.get('thumbnail_300w')
7fc3fa05
PH
62
63 return {
64 '_type': 'url_transparent',
84769e70 65 'url': youtube_id,
7fc3fa05
PH
66 'ie_key': 'Youtube',
67 'id': video_id,
4be9f8c8
PH
68 'display_id': display_id,
69 'title': title,
84769e70
PH
70 'description': description,
71 'view_count': view_count,
d7666dff 72 'thumbnail': thumbnail,
7fc3fa05 73 }