Hello !
I am trying to retrieve the artist data from a music file. I already know how to retrieve the music duration, that I have to create a channel just for it, and I think it is similar to get metadata such as author. However, I'm not sure what to do to retrieve the author other than that, I found an incomplete example
decoder = BASS_StreamCreateFile(false, filename, 0, 0, BASS_STREAM_DECODE); // create a decoder for a file
duration = BASS_ChannelBytes2Second(decoder, BASS_ChannelGetLength(decoder, BASS_POS_BYTE)); // get its duration
tags = BASS_ChannelGetTags(decoder, ...); // get tags from it
...
BASS_StreamFree(decoder); // free the decoder
But I couldn't manage to find how to go from there, to get the artist. Can you please help me?