youtube-dl

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

commit 83880949a17586cd9db59272b42dd43e43b02e2e
parent 3749e36e9f0e6be2a3a3ab1b15c0c02be5a50e2f
Author: Sergey M <dstftw@gmail.com>
Date:   Wed, 13 May 2015 19:36:22 +0500

Merge pull request #5682 from blissland/master

[BYUtvIE] Relax thumbnail regex so test does not fail
Diffstat:
Myoutube_dl/extractor/byutv.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/byutv.py b/youtube_dl/extractor/byutv.py @@ -16,7 +16,7 @@ class BYUtvIE(InfoExtractor): 'ext': 'mp4', 'description': 'md5:5438d33774b6bdc662f9485a340401cc', 'title': 'Season 5 Episode 5', - 'thumbnail': 're:^https?://.*promo.*' + 'thumbnail': 're:^https?://.*\.jpg$' }, 'params': { 'skip_download': True,