mirror of
https://github.com/beetbox/beets.git
synced 2025-12-22 08:34:23 +01:00
bugfix: extract duration from track
This commit is contained in:
parent
03f5f71732
commit
9ac89b350c
1 changed files with 1 additions and 0 deletions
|
|
@ -191,6 +191,7 @@ class EchonestMetadataPlugin(plugins.BeetsPlugin):
|
|||
result['danceability'] = track.danceability
|
||||
result['valence'] = track.valence
|
||||
result['tempo'] = track.tempo
|
||||
result['duration'] = track.duration
|
||||
return result
|
||||
songs = self._echofun(pyechonest.song.profile,
|
||||
ids=ids, track_ids=[track.id],
|
||||
|
|
|
|||
Loading…
Reference in a new issue