diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-11-21 17:39:24 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-11-21 17:39:24 +0600 | 
| commit | f52183a8780a7b9e58ffb4510e234a7392ad8a2f (patch) | |
| tree | 546b991aff105389ba142567cb4f0804d2753597 | |
| parent | 750b9ff0324b04f252b05cfadd802e8b1f2cc19d (diff) | |
[rutube:embed] Extend _VALID_URL (Closes #7588)
| -rw-r--r-- | youtube_dl/extractor/rutube.py | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/rutube.py b/youtube_dl/extractor/rutube.py index d94dc7399..e824129b4 100644 --- a/youtube_dl/extractor/rutube.py +++ b/youtube_dl/extractor/rutube.py @@ -74,9 +74,9 @@ class RutubeIE(InfoExtractor):  class RutubeEmbedIE(InfoExtractor):      IE_NAME = 'rutube:embed'      IE_DESC = 'Rutube embedded videos' -    _VALID_URL = 'https?://rutube\.ru/video/embed/(?P<id>[0-9]+)' +    _VALID_URL = 'https?://rutube\.ru/(?:video|play)/embed/(?P<id>[0-9]+)' -    _TEST = { +    _TESTS = [{          'url': 'http://rutube.ru/video/embed/6722881?vk_puid37=&vk_puid38=',          'info_dict': {              'id': 'a10e53b86e8f349080f718582ce4c661', @@ -90,7 +90,10 @@ class RutubeEmbedIE(InfoExtractor):          'params': {              'skip_download': 'Requires ffmpeg',          }, -    } +    }, { +        'url': 'http://rutube.ru/play/embed/8083783', +        'only_matching': True, +    }]      def _real_extract(self, url):          embed_id = self._match_id(url)  | 
