youtube-dl

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

commit 383496e65ed2a965ab82e5cc3012fd3e0ca2afbf
parent 4519c1f43cd2d0634e85041aa8f950ddb745e285
Author: igv <igv.versn@gmail.com>
Date:   Thu, 21 Jan 2016 12:36:09 +0300

Additional regex for yahoo extractor

Diffstat:
Myoutube_dl/extractor/yahoo.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py @@ -221,6 +221,7 @@ class YahooIE(InfoExtractor): r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"', r'"first_videoid"\s*:\s*"([^"]+)"', r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id), + r'yahoo:\/\/article\/view\?uuid=([^&]+)&', ] video_id = self._search_regex( CONTENT_ID_REGEXES, webpage, 'content ID')