来自德国的问候,麦克斯
发布于 2014-01-29 14:27:21
从文件里..。
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
} 这可能会有帮助。其他标记是其他数据结构,您可以用不同的方法处理它们。
https://stackoverflow.com/questions/18788112
复制相似问题