youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 1fafb329849e3f07e6a6e4141bcd4547e141745c
parent c901cc38e50a47c9659db534e637ac4f6a54c450
Author: sichuan-pepper <huajiao.sichuan.pepper@gmail.com>
Date:   Sun, 28 Oct 2018 01:46:32 +0900

[screencast] Fix extraction (closes #14590)

Diffstat:
Myoutube_dl/extractor/screencast.py | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py @@ -91,6 +91,14 @@ class ScreencastIE(InfoExtractor): 'meta tag video URL', default=None) if video_url is None: + video_url = self._html_search_regex( + r'"MediaContentUrl":"([^"]+)"', webpage, 'media content url', default=None) + + if video_url is None: + video_url = self._html_search_meta( + 'og:video', webpage, default=None) + + if video_url is None: raise ExtractorError('Cannot find video') title = self._og_search_title(webpage, default=None)