youtube-dl

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

commit 3ed81714d8db61ea6d1633184af15d239af0445c
parent 4bd7d9d4ae05319ebf6eb2aeffce7bde4fa7b6cf
Author: vordep <up201303880@fe.up.pt>
Date:   Sun,  4 Dec 2016 23:53:49 +0000

[fusion] Update ooyala id regex

Diffstat:
Myoutube_dl/extractor/fusion.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/fusion.py b/youtube_dl/extractor/fusion.py @@ -29,7 +29,7 @@ class FusionIE(InfoExtractor): webpage = self._download_webpage(url, display_id) ooyala_code = self._search_regex( - r'data-video-id=(["\'])(?P<code>.+?)\1', + r'data-ooyala-id=(["\'])(?P<code>(?:(?!\1).)+)\1', webpage, 'ooyala code', group='code') return OoyalaIE._build_url_result(ooyala_code)