aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rutv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-23 01:01:47 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-23 01:01:47 +0600
commit685c74d315a54154c5a1d9ecee8b212dbee94bc7 (patch)
tree73ff61af77b3aa292da8996b5165cb46aa48393c /youtube_dl/extractor/rutv.py
parent69e0f1b445388e4b6f45868d53780d6f8937f56e (diff)
downloadyoutube-dl-685c74d315a54154c5a1d9ecee8b212dbee94bc7.tar.xz
[rutv] Extend embed URL (Closes #5782)
Diffstat (limited to 'youtube_dl/extractor/rutv.py')
-rw-r--r--youtube_dl/extractor/rutv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rutv.py b/youtube_dl/extractor/rutv.py
index 55604637d..d9df06861 100644
--- a/youtube_dl/extractor/rutv.py
+++ b/youtube_dl/extractor/rutv.py
@@ -104,7 +104,7 @@ class RUTVIE(InfoExtractor):
@classmethod
def _extract_url(cls, webpage):
mobj = re.search(
- r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.rutv\.ru/(?:iframe/(?:swf|video|live)/id|index/iframe/cast_id)/.+?)\1', webpage)
+ r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.(?:rutv\.ru|vgtrk\.com)/(?:iframe/(?:swf|video|live)/id|index/iframe/cast_id)/.+?)\1', webpage)
if mobj:
return mobj.group('url')