我目前正在讨论可以播放无线电流的项目。这些流将使用axWindowsMediaPlayer控件播放。但是我如何阅读流标题+艺术家?
来自德国的问候,Max
答案 0 :(得分:0)
来自文档...
char *BASS_ChannelGetTags(
DWORD handle,
DWORD tags)
低音会有点。
// get a pointer to the 1st tag
char *icytags=BASS_ChannelGetTags(channel, BASS_TAG_ICY);
if (icytags)
while (*icytags) {
printf("%s\n", icytags); // display the tag
comments+=strlen(icytags)+1; // move on to next tag
}
这是ogg评论的代码,但替换了icytags。我没试过,但如果你看这里: The BASS Docs of BASS_ChannelGetTags
这可能会有所帮助。其他标签是其他数据结构,您可以采用不同的方式。