2013-12-05 13:29:08 +00:00
|
|
|
from .common import InfoExtractor
|
2021-01-16 17:12:05 +00:00
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
2021-02-19 20:44:36 +00:00
|
|
|
determine_ext,
|
2021-01-16 17:12:05 +00:00
|
|
|
int_or_none,
|
|
|
|
try_get,
|
2021-02-19 20:44:36 +00:00
|
|
|
unescapeHTML,
|
2021-01-16 17:12:05 +00:00
|
|
|
url_or_none,
|
|
|
|
)
|
2013-12-05 13:29:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NineGagIE(InfoExtractor):
|
|
|
|
IE_NAME = '9gag'
|
2021-01-16 17:12:05 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?9gag\.com/gag/(?P<id>[^/?&#]+)'
|
2013-12-05 13:29:08 +00:00
|
|
|
|
2021-02-19 20:44:36 +00:00
|
|
|
_TESTS = [{
|
2021-01-16 17:12:05 +00:00
|
|
|
'url': 'https://9gag.com/gag/ae5Ag7B',
|
2015-09-22 19:55:16 +00:00
|
|
|
'info_dict': {
|
2021-01-16 17:12:05 +00:00
|
|
|
'id': 'ae5Ag7B',
|
2015-09-22 19:55:16 +00:00
|
|
|
'ext': 'mp4',
|
2021-01-16 17:12:05 +00:00
|
|
|
'title': 'Capybara Agility Training',
|
|
|
|
'upload_date': '20191108',
|
|
|
|
'timestamp': 1573237208,
|
|
|
|
'categories': ['Awesome'],
|
|
|
|
'tags': ['Weimaraner', 'American Pit Bull Terrier'],
|
|
|
|
'duration': 44,
|
|
|
|
'like_count': int,
|
|
|
|
'dislike_count': int,
|
|
|
|
'comment_count': int,
|
|
|
|
}
|
2021-02-19 20:44:36 +00:00
|
|
|
}, {
|
|
|
|
# HTML escaped title
|
|
|
|
'url': 'https://9gag.com/gag/av5nvyb',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2013-12-05 13:29:08 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2021-01-16 17:12:05 +00:00
|
|
|
post_id = self._match_id(url)
|
|
|
|
post = self._download_json(
|
|
|
|
'https://9gag.com/v1/post', post_id, query={
|
|
|
|
'id': post_id
|
|
|
|
})['data']['post']
|
|
|
|
|
|
|
|
if post.get('type') != 'Animated':
|
|
|
|
raise ExtractorError(
|
|
|
|
'The given url does not contain a video',
|
|
|
|
expected=True)
|
|
|
|
|
2021-02-19 20:44:36 +00:00
|
|
|
title = unescapeHTML(post['title'])
|
2021-01-16 17:12:05 +00:00
|
|
|
|
|
|
|
duration = None
|
|
|
|
formats = []
|
|
|
|
thumbnails = []
|
|
|
|
for key, image in (post.get('images') or {}).items():
|
|
|
|
image_url = url_or_none(image.get('url'))
|
|
|
|
if not image_url:
|
|
|
|
continue
|
|
|
|
ext = determine_ext(image_url)
|
|
|
|
image_id = key.strip('image')
|
|
|
|
common = {
|
|
|
|
'url': image_url,
|
|
|
|
'width': int_or_none(image.get('width')),
|
|
|
|
'height': int_or_none(image.get('height')),
|
|
|
|
}
|
|
|
|
if ext in ('jpg', 'png'):
|
|
|
|
webp_url = image.get('webpUrl')
|
|
|
|
if webp_url:
|
|
|
|
t = common.copy()
|
|
|
|
t.update({
|
|
|
|
'id': image_id + '-webp',
|
|
|
|
'url': webp_url,
|
|
|
|
})
|
|
|
|
thumbnails.append(t)
|
|
|
|
common.update({
|
|
|
|
'id': image_id,
|
|
|
|
'ext': ext,
|
|
|
|
})
|
|
|
|
thumbnails.append(common)
|
|
|
|
elif ext in ('webm', 'mp4'):
|
|
|
|
if not duration:
|
|
|
|
duration = int_or_none(image.get('duration'))
|
|
|
|
common['acodec'] = 'none' if image.get('hasAudio') == 0 else None
|
|
|
|
for vcodec in ('vp8', 'vp9', 'h265'):
|
|
|
|
c_url = image.get(vcodec + 'Url')
|
|
|
|
if not c_url:
|
|
|
|
continue
|
|
|
|
c_f = common.copy()
|
|
|
|
c_f.update({
|
|
|
|
'format_id': image_id + '-' + vcodec,
|
|
|
|
'url': c_url,
|
|
|
|
'vcodec': vcodec,
|
|
|
|
})
|
|
|
|
formats.append(c_f)
|
|
|
|
common.update({
|
|
|
|
'ext': ext,
|
|
|
|
'format_id': image_id,
|
|
|
|
})
|
|
|
|
formats.append(common)
|
|
|
|
self._sort_formats(formats)
|
2013-12-05 13:29:08 +00:00
|
|
|
|
2021-01-16 17:12:05 +00:00
|
|
|
section = try_get(post, lambda x: x['postSection']['name'])
|
2013-12-05 13:29:08 +00:00
|
|
|
|
2021-01-16 17:12:05 +00:00
|
|
|
tags = None
|
|
|
|
post_tags = post.get('tags')
|
|
|
|
if post_tags:
|
|
|
|
tags = []
|
|
|
|
for tag in post_tags:
|
|
|
|
tag_key = tag.get('key')
|
|
|
|
if not tag_key:
|
|
|
|
continue
|
|
|
|
tags.append(tag_key)
|
2014-04-15 12:49:38 +00:00
|
|
|
|
2021-01-16 17:12:05 +00:00
|
|
|
get_count = lambda x: int_or_none(post.get(x + 'Count'))
|
2013-12-05 13:29:08 +00:00
|
|
|
|
|
|
|
return {
|
2021-01-16 17:12:05 +00:00
|
|
|
'id': post_id,
|
2014-04-10 23:25:24 +00:00
|
|
|
'title': title,
|
2021-01-16 17:12:05 +00:00
|
|
|
'timestamp': int_or_none(post.get('creationTs')),
|
|
|
|
'duration': duration,
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnails': thumbnails,
|
|
|
|
'like_count': get_count('upVote'),
|
|
|
|
'dislike_count': get_count('downVote'),
|
|
|
|
'comment_count': get_count('comments'),
|
|
|
|
'age_limit': 18 if post.get('nsfw') == 1 else None,
|
|
|
|
'categories': [section] if section else None,
|
|
|
|
'tags': tags,
|
2013-12-05 13:29:08 +00:00
|
|
|
}
|