[tutv] Fix URL type (for Python 3)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 29 Jun 2013 15:42:15 +0000 (17:42 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 29 Jun 2013 15:42:15 +0000 (17:42 +0200)
youtube_dl/extractor/tutv.py

index 8afe4834859d27cbb0ead360e42c112d9dee6cbe..fcaa6ac01af6d778e43aa7b35d92d3dcc9478911 100644 (file)
@@ -29,8 +29,8 @@ class TutvIE(InfoExtractor):
         data_url = u'http://tu.tv/flvurl.php?codVideo=' + str(internal_id)
         data_content = self._download_webpage(data_url, video_id, note=u'Downloading video info')
         data = compat_parse_qs(data_content)
-        video_url = base64.b64decode(data['kpt'][0])
-        ext = video_url.partition('?')[0].rpartition('.')[2]
+        video_url = base64.b64decode(data['kpt'][0]).decode('utf-8')
+        ext = video_url.partition(u'?')[0].rpartition(u'.')[2]
 
         info = {
             'id': internal_id,