1
我寫一個小程序,應該從SoundCloud .. 我的碼流的歌曲從SoundCloud一首歌:流使用Python API
import soundcloud
cid="==="
cs="==="
un="==="
pw="==="
client = soundcloud.Client(
client_id=cid,
client_secret=cs,
username=un,
password=pw
)
print "Your username is " + client.get('/me').username
# fetch track to stream
track = client.get('/tracks/293')
# get the tracks streaming URL
stream_url = client.get(track.stream_url, allow_redirects=False)
# print the tracks stream URL
print stream_url.location
它只是打印usernsame,和軌道URL 它打印這樣的東西:
Your username is '==='
https://ec-media.soundcloud.com/cWHNerOLlkUq.128.mp3?f8f78g6njdj.....
然後,我想從URL播放MP3。我可以使用urllib下載它,但如果它是一個大文件,它會花費很多時間。
什麼是流的MP3的最佳方式是什麼? 謝謝!