youtube-dl

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

commit 12ebdd150624adc20a841f5fb174676b123ef826
parent 1baf9a59388f2b10fee0f7fc60b548dc11ed08b7
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun,  3 Nov 2013 15:49:59 +0100

[viddler] Support non-digit IDs (Fixes #1714)

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

diff --git a/youtube_dl/extractor/viddler.py b/youtube_dl/extractor/viddler.py @@ -8,7 +8,7 @@ from ..utils import ( class ViddlerIE(InfoExtractor): - _VALID_URL = r'(?P<domain>https?://(?:www\.)?viddler.com)/(?:v|embed|player)/(?P<id>[0-9]+)' + _VALID_URL = r'(?P<domain>https?://(?:www\.)?viddler.com)/(?:v|embed|player)/(?P<id>[a-z0-9]+)' _TEST = { u"url": u"http://www.viddler.com/v/43903784", u'file': u'43903784.mp4',