logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: c4737bea1716386e8b3455edfbd783fd415c192d
parent 45dad7ba1b28321299f973fc6a42bd7de64481d7
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  7 Dec 2015 22:03:52 +0600

[vk] Add support for pladform embeds (Closes #7780)

Diffstat:

Myoutube_dl/extractor/vk.py5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py @@ -18,6 +18,7 @@ from ..utils import ( unified_strdate, ) from .vimeo import VimeoIE +from .pladform import PladformIE class VKIE(InfoExtractor): @@ -254,6 +255,10 @@ class VKIE(InfoExtractor): if vimeo_url is not None: return self.url_result(vimeo_url) + pladform_url = PladformIE._extract_url(info_page) + if pladform_url: + return self.url_result(pladform_url) + m_rutube = re.search( r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page) if m_rutube is not None: