-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Flixel] Add new extractor #14899
[Flixel] Add new extractor #14899
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# coding: utf-8 | ||
from __future__ import unicode_literals | ||
|
||
from .common import InfoExtractor | ||
|
||
|
||
class FlixelIE(InfoExtractor): | ||
_VALID_URL = r'https?://(?:www\.)?flixel\.com/cinemagraph/(?P<id>[0-9a-zA-Z]+)' | ||
_TEST = { | ||
'url': 'https://flixel.com/cinemagraph/tg64m4fmxbqu5yrywoz5/', | ||
'md5': '374a8a8f8902f7db0f4a8d6f580c23ed', | ||
'info_dict': { | ||
'id': 'tg64m4fmxbqu5yrywoz5', | ||
'ext': 'mp4', | ||
'title': 'ROSSIO', | ||
'uploader': 'capn', | ||
'duration': 3.575, | ||
'thumbnail': 'https://cdn.flixel.com/flixel/tg64m4fmxbqu5yrywoz5.thumbnail.jpg?v=1', | ||
'webpage_url': 'https://flixel.com/cinemagraph/tg64m4fmxbqu5yrywoz5/', | ||
} | ||
} | ||
|
||
def _real_extract(self, url): | ||
video_id = self._match_id(url) | ||
json_url = 'https://api.flixel.com/2/flixels/{0}'.format(video_id) | ||
meta = self._download_json(json_url, video_id) | ||
return { | ||
'id': video_id, | ||
'title': meta.get('caption'), | ||
'url': meta.get('hd_mp4'), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More video qualities are available. |
||
'uploader': meta.get('username'), | ||
'duration': meta.get('duration'), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
'thumbnail': meta.get('thumbnail'), | ||
'webpage_url': meta.get('link'), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove. |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Title is mandatory.