diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-23 23:55:52 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-23 23:55:52 +0800 |
commit | fc27ea94642a8e2e9b0fcfdcc0c370ec7484c971 (patch) | |
tree | 35dea9a0b710031efabe3768af048d2a5867e4c1 /youtube_dl/extractor/tumblr.py | |
parent | 088e1aac5970ea2c24fa902873a5e0b984b37595 (diff) |
[tumblr] Support Vine embeds (#8817)
Diffstat (limited to 'youtube_dl/extractor/tumblr.py')
-rw-r--r-- | youtube_dl/extractor/tumblr.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py index cea117c79..584716986 100644 --- a/youtube_dl/extractor/tumblr.py +++ b/youtube_dl/extractor/tumblr.py @@ -67,6 +67,22 @@ class TumblrIE(InfoExtractor): 'uploader_id': 'user32021558', }, 'add_ie': ['Vimeo'], + }, { + 'url': 'http://sutiblr.tumblr.com/post/139638707273', + 'md5': '2dd184b3669e049ba40563a7d423f95c', + 'info_dict': { + 'id': 'ir7qBEIKqvq', + 'ext': 'mp4', + 'title': 'Vine by sutiblr', + 'alt_title': 'Vine by sutiblr', + 'uploader': 'sutiblr', + 'uploader_id': '1198993975374495744', + 'upload_date': '20160220', + 'like_count': int, + 'comment_count': int, + 'repost_count': int, + }, + 'add_ie': ['Vine'], }] def _real_extract(self, url): |