Python Echonest::歌曲持续时间

Python Echonest::歌曲持续时间,python,echonest,Python,Echonest,我希望我的Echonest响应获得歌曲持续时间,这应该是音频摘要的一部分 params = { 'type':'artist-radio', 'artist':artist, 'results': 3, 'bucket' : ['id:spotify-WW', 'tracks'], 'limit': True } response = en.get('playlist/static', **par

我希望我的
Echonest
响应
获得
歌曲持续时间
,这应该是
音频摘要
的一部分

params = {
        'type':'artist-radio', 
        'artist':artist, 
        'results': 3,
        'bucket' : ['id:spotify-WW', 'tracks'],
        'limit': True
    }
    response = en.get('playlist/static', **params)
    songs = response['songs']
那么,要获得歌曲
持续时间
,我应该在上面的示例中使用哪个
键/值


注意:使用的包装是
pyen

duration
是在
song/profile
中发现的分析,而不是在
playlist/static
方法中,因此我们需要
api
中的第二个
响应

这是获取每首歌曲
持续时间
(以及打印
艺术家姓名
歌曲标题
)的一种方法:

    #get 'playlist response'
    response_playlist = en.get('playlist/static', **params)
    song_playlist = response_playlist['songs']

    if len(song_playlist) > 0:

        for i, song in enumerate(song_playlist):
            #we need to track each song id
            song_id = song_playlist[i]['id'] #ok
            #in order to get song 'duration', we need to access 'song/profile response'
            #and pass the id as an argument to 'audio_summary'
            response_profile = en.get('song/profile', id=song_id, bucket="audio_summary")
            song_profile = response_profile['songs']
            dur = song_profile[0]['audio_summary']['duration']      
            print dur                           
            #now we access each song 'foreign_id', which is playable by, say, Spotify 
            for track in song:
                track = song['tracks'][i]
                track_id = track['foreign_id'].replace('-WW', '')           
            print '{0} {2} {1}'.format(i, song['artist_name'], song['title'])