|
|
@ -52,8 +52,7 @@ class AudiomackIE(InfoExtractor):
|
|
|
|
#Audiomack wraps a lot of soundcloud tracks in their branded wrapper
|
|
|
|
#Audiomack wraps a lot of soundcloud tracks in their branded wrapper
|
|
|
|
# - if so, pass the work off to the soundcloud extractor
|
|
|
|
# - if so, pass the work off to the soundcloud extractor
|
|
|
|
if SoundcloudIE.suitable(realurl):
|
|
|
|
if SoundcloudIE.suitable(realurl):
|
|
|
|
sc = SoundcloudIE(downloader=self._downloader)
|
|
|
|
return {'_type': 'url', 'url': realurl, 'ie_key': 'Soundcloud'}
|
|
|
|
return sc._real_extract(realurl)
|
|
|
|
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
#Pull out metadata
|
|
|
|
#Pull out metadata
|
|
|
|
page = self._download_webpage(url, id)
|
|
|
|
page = self._download_webpage(url, id)
|
|
|
|