diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:58:47 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:58:47 +0600 | 
| commit | 78f9fb902b36c2a12dfe50d9724ac470b03c87d5 (patch) | |
| tree | 45a7c8eef54ebdc1f5127aeda38e2520dd986f72 | |
| parent | d8fef8faacad4f3b9d13e20df4ee9344ada3c68d (diff) | |
[9gag] Support embed URLs
| -rw-r--r-- | youtube_dl/extractor/ninegag.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ninegag.py b/youtube_dl/extractor/ninegag.py index 4adff197e..a06d38afd 100644 --- a/youtube_dl/extractor/ninegag.py +++ b/youtube_dl/extractor/ninegag.py @@ -8,7 +8,7 @@ from ..utils import str_to_int  class NineGagIE(InfoExtractor):      IE_NAME = '9gag' -    _VALID_URL = r'https?://(?:www\.)?9gag(?:\.com/tv|\.tv)/p/(?P<id>[a-zA-Z0-9]+)(?:/(?P<display_id>[^?#/]+))?' +    _VALID_URL = r'https?://(?:www\.)?9gag(?:\.com/tv|\.tv)/(?:p|embed)/(?P<id>[a-zA-Z0-9]+)(?:/(?P<display_id>[^?#/]+))?'      _TESTS = [{          'url': 'http://9gag.com/tv/p/Kk2X5/people-are-awesome-2013-is-absolutely-awesome', @@ -42,7 +42,11 @@ class NineGagIE(InfoExtractor):      }, {          'url': 'http://9gag.tv/p/Kk2X5',          'only_matching': True, +    }, { +        'url': 'http://9gag.com/tv/embed/a5Dmvl', +        'only_matching': True,      }] +      _EXTERNAL_VIDEO_PROVIDER = {          '1': {              'url': '%s',  | 
