i'm using taglib-sharp to read BPM tag in a mp3 music folder. The code is like this:
Dim f As TagLib.File = TagLib.File.Create(File)
Dim bpm As String = f.Tag.BeatsPerMinute
The files BPM tag contains decimal numbers but the code returns an integer.
What can i do to solve?