mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-03-18 22:12:21 +09:00
used the fix for python 3 provided by @jaimeMF
This commit is contained in:
parent
b8e189f1de
commit
fd133bfffa
@ -4529,6 +4529,7 @@ class HypemIE(InfoExtractor):
|
||||
response = compat_urllib_request.urlopen(request)
|
||||
song_data_json = response.read()
|
||||
response.close()
|
||||
(song_data_json, response) = self._download_webpage_handle(request, id, u'Downloading webpage with the url')
|
||||
song_data = json.loads(song_data_json)
|
||||
final_url = song_data[u"url"]
|
||||
return [{
|
||||
|
Loading…
Reference in New Issue
Block a user