2

我想检索当前在 Spotify 中播放的曲目/专辑的类型。

我查看了 Last.FM 从专辑或曲目中获取流派,但似乎别无选择。

请问有人可以帮我通过网络服务找到流派吗?

4

2 回答 2

1

我建议使用Echo Nest API,因为 Last.fm 只使用用户输入的标签,这并不总是有用的。

于 2012-02-17T13:57:37.093 回答
0

您在 MusicStore 项目中遇到过这个问题吗?如果你这样做,打开Album.cs,找到这个:

public Genre Genre { get; set; }
public Artist Artist { get; set; }

并添加一个虚拟属性,例如:

public virtual Genre Genre { get; set; }
public virtual Artist Artist { get; set; }
于 2012-09-14T17:28:37.870 回答