diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-09 22:40:18 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-09 22:40:18 +0600 |
commit | 64f1aba8f1a6dba88e0dd0edc799fee978c7ce76 (patch) | |
tree | 3feabffc8710f056f04e96042124b5c22ad3480c /youtube_dl/extractor/vine.py | |
parent | 3359fb661fdf3f9308611dc10c5b579b7a7ef56e (diff) |
[vine] Extend _VALID_URL
Diffstat (limited to 'youtube_dl/extractor/vine.py')
-rw-r--r-- | youtube_dl/extractor/vine.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py index 804adbdb0..a4d5af147 100644 --- a/youtube_dl/extractor/vine.py +++ b/youtube_dl/extractor/vine.py @@ -9,7 +9,7 @@ from ..utils import unified_strdate class VineIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?vine\.co/v/(?P<id>\w+)' + _VALID_URL = r'https?://(?:www\.)?vine\.co/(?:v|oembed)/(?P<id>\w+)' _TESTS = [{ 'url': 'https://vine.co/v/b9KOOWX7HUx', 'md5': '2f36fed6235b16da96ce9b4dc890940d', @@ -49,6 +49,9 @@ class VineIE(InfoExtractor): 'uploader': 'Z3k3', 'uploader_id': '936470460173008896', }, + }, { + 'url': 'https://vine.co/oembed/MYxVapFvz2z.json', + 'only_matching': True, }] def _real_extract(self, url): |