Browse Source

added .decode('ascii')

rtmp_test
M.Yasoob Khalid 11 years ago
parent
commit
b1dfdc51b1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/wimp.py

+ 2
- 2
youtube_dl/extractor/wimp.py View File

@ -13,8 +13,8 @@ class WimpIE(InfoExtractor):
title = self._search_regex('\<meta name\="description" content="(.+?)" \/\>',webpage, 'video title')
thumbnail_url = self._search_regex('\<meta property\=\"og\:image" content\=\"(.+?)\" />',webpage,'video thumbnail')
googleString = self._search_regex("googleCode = '(.*?)'", webpage,'file url')
googleString = base64.b64decode(googleString)
final_url = self._search_regex(b'","(.*?)"', googleString,'final video url')
googleString = base64.b64decode(googleString).decode('ascii')
final_url = self._search_regex('","(.*?)"', googleString,'final video url')
ext = final_url.split('.')[-1]
return [{
'id': video_id,


Loading…
Cancel
Save