youtube-dl

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

commit 5e58956d0a057e7294af15bef5a22c675812a18b
parent e276fd2cb39a94b1f40f47a5c52913aac8557976
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 29 Aug 2015 18:57:44 +0600

[screenwavemedia] Add EMBED_PATTERN

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

diff --git a/youtube_dl/extractor/screenwavemedia.py b/youtube_dl/extractor/screenwavemedia.py @@ -13,7 +13,7 @@ from ..utils import ( class ScreenwaveMediaIE(InfoExtractor): _VALID_URL = r'http://player\d?\.screenwavemedia\.com/(?:play/)?[a-zA-Z]+\.php\?[^"]*\bid=(?P<id>.+)' - + EMBED_PATTERN = r'src=(["\'])(?P<url>(?:https?:)?//player\d?\.screenwavemedia\.com/(?:play/)?[a-zA-Z]+\.php\?.*\bid=.+?)\1' _TESTS = [{ 'url': 'http://player.screenwavemedia.com/play/play.php?playerdiv=videoarea&companiondiv=squareAd&id=Cinemassacre-19911', 'only_matching': True,