youtube-dl

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

commit 06947add03b6b619292812a771993d3365b0e7e5
parent 5cd47a5e4f54033bcf6d80908e00eff4c75a51c5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 22 May 2015 00:03:47 +0600

[chilloutzone] Fix for python 3.2

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

diff --git a/youtube_dl/extractor/chilloutzone.py b/youtube_dl/extractor/chilloutzone.py @@ -57,7 +57,7 @@ class ChilloutzoneIE(InfoExtractor): base64_video_info = self._html_search_regex( r'var cozVidData = "(.+?)";', webpage, 'video data') - decoded_video_info = base64.b64decode(base64_video_info).decode("utf-8") + decoded_video_info = base64.b64decode(base64_video_info.encode('utf-8')).decode('utf-8') video_info_dict = json.loads(decoded_video_info) # get video information from dict