youtube-dl

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

commit 5cd47a5e4f54033bcf6d80908e00eff4c75a51c5
parent 53de95da5e40aa1a465668977e507ccc914099f9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 21 May 2015 23:58:46 +0600

[videott] Fix for python 3.2

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

diff --git a/youtube_dl/extractor/videott.py b/youtube_dl/extractor/videott.py @@ -43,7 +43,7 @@ class VideoTtIE(InfoExtractor): formats = [ { - 'url': base64.b64decode(res['u']).decode('utf-8'), + 'url': base64.b64decode(res['u'].encode('utf-8')).decode('utf-8'), 'ext': 'flv', 'format_id': res['l'], } for res in settings['res'] if res['u']