aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rutube.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-16 04:44:17 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-16 04:44:17 +0600
commit2d3b70271ca427cb4bbe3cf7bb8b6dc0b471cae5 (patch)
treeb39ddea0cab1771ff6e2c6ad6713e94b40a4fce5 /youtube_dl/extractor/rutube.py
parentad1b6017cd48c62896a2d6c978f21e27f5d96d2f (diff)
downloadyoutube-dl-2d3b70271ca427cb4bbe3cf7bb8b6dc0b471cae5.tar.xz
[rutube] Extend _VALID_URL
Diffstat (limited to 'youtube_dl/extractor/rutube.py')
-rw-r--r--youtube_dl/extractor/rutube.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/rutube.py b/youtube_dl/extractor/rutube.py
index 6b09550b0..9db62adb1 100644
--- a/youtube_dl/extractor/rutube.py
+++ b/youtube_dl/extractor/rutube.py
@@ -17,9 +17,9 @@ from ..utils import (
class RutubeIE(InfoExtractor):
IE_NAME = 'rutube'
IE_DESC = 'Rutube videos'
- _VALID_URL = r'https?://rutube\.ru/video/(?P<id>[\da-z]{32})'
+ _VALID_URL = r'https?://rutube\.ru/(?:video|play/embed)/(?P<id>[\da-z]{32})'
- _TEST = {
+ _TESTS = [{
'url': 'http://rutube.ru/video/3eac3b4561676c17df9132a9a1e62e3e/',
'info_dict': {
'id': '3eac3b4561676c17df9132a9a1e62e3e',
@@ -36,7 +36,10 @@ class RutubeIE(InfoExtractor):
# It requires ffmpeg (m3u8 download)
'skip_download': True,
},
- }
+ }, {
+ 'url': 'http://rutube.ru/play/embed/a10e53b86e8f349080f718582ce4c661',
+ 'only_matching': True,
+ }]
def _real_extract(self, url):
video_id = self._match_id(url)