What do you suggest I do to read metadata from MP3 files created with Audacity?
I routinely use R with RStudio. A previous post to StackOverflow asked, ""Is it possible to read music file metadata using R?" Someone said 'You "could" use a combination of readChar and / or readBin. I tried
data<- readBin(MP3file, 'character', 30000)
I parsed "data", sort of, using rle(data == '')
to differentiate between the ID3v2.3 and the actual sound data. However, what I got did not seem very informative.
I found other discussions recommending taglib-sharp, e.g., "How to use taglib to get information from a audio file", but I could not see how to use that. I've seen other discussions recommending other things, other Python packages or C or C#. I've used Python a tiny bit but not enough to know what to do here.
Help. Thanks, Spencer Graves