youtube-dl

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

commit 2c2a42587b1755624a75a4b748c59a24f8b146aa
parent e2f65efcf9c3f39acba66a4238529e4a09db1822
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 21 Dec 2014 07:38:55 +0600

[dvtv] Fix thumbnail scheme

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

diff --git a/youtube_dl/extractor/dvtv.py b/youtube_dl/extractor/dvtv.py @@ -92,7 +92,7 @@ class DVTVIE(InfoExtractor): return { 'id': metadata['mediaid'], 'title': unescapeHTML(metadata['title']), - 'thumbnail': self._proto_relative_url(metadata['image']), + 'thumbnail': self._proto_relative_url(metadata['image'], 'http:'), 'formats': formats }