Questions tagged [id3lib]

id3lib is an open-source, cross-platform software development library for reading, writing, and manipulating ID3v1 and ID3v2 tags.

ID3 is a metadata container most often used in conjunction with the MP3 audio file format. It allows information such as the title, artist, album, track number, and other information about the file to be stored in the file itself (Souce: Wikipedia).

24 questions
0
votes
1 answer

Undefined reference `ID3_Tag::ID3_Tag(char const*)`

I am trying to use id3lib in my project to get audio meta data, for now I just have this one line inside my project that use id3lib I did #include and then somewhere in project I have ID3_Tag…
apoorv569
  • 143
  • 1
  • 12
0
votes
1 answer

Problem saving a MP3 with new ID3 Tags

I am using the ID3lib and the MP3Lib of their examples ( http://id3lib.sourceforge.net/ ) When I edit my MP3s it works sometimes, and sometimes not. Then I get a exception, that the File cannot be rewritten. The files are not in use. I think, the…
Keenora Fluffball
  • 1,647
  • 2
  • 18
  • 34
0
votes
1 answer

file not found error when trying to include id3lib header

I downloaded id3lib and placed the directory in my main.cpp directory but both g++ and visual studio give file/directory not founds and "undefined" errors Here is my main.cpp: #include #include int main()…
user10830252
0
votes
0 answers

Add id3lib.dll to CMake project

I have a problem using id3lib.dll in a Windows C++ CMake project. I have some experience in C++ but I have never tried to include use .dll file in my project. I have not seen any id3lib documentation on how to include dll in your project. I have…
user5431481
0
votes
1 answer

failed to link example program using id3 library

i am trying to use lib id3 to access mp3 tags with the ultimate aim of accessing album art from mp3 music files. The problem is that i have even failed to compile the example programs that come with the id3 library. problem 1. trying to compile an…
Dr Deo
  • 4,650
  • 11
  • 43
  • 73
0
votes
0 answers

Problems retrieving Mp3 tag with german special chars

I'm trying to write a tool that requires to read mp3 tags. Currently, I use id3lib, but I have problems interpreting the text strings if they contains non-ASCII characters. I found out that even the commandline tools id3info that comes with libid3…
0
votes
2 answers

include id3lib in QT project, C++

================================== Configuration : Qt Creator 2.8.1 Qt 5.1.1 Windows 7 64 bits ================================== How can I include id3lib library ? I've already donwloaded required files (.h, .dll, .lib and .exp) from…
David
  • 4,785
  • 7
  • 39
  • 63
0
votes
1 answer

Running id3lib-ruby on Heroku

I'm attempting to resurrect some old code which used id3lib-ruby and id3lib to run on Heroku and am not having any luck with it - can someone tell me if its supported? I know that the id3lib-ruby gem itself is no longer supported, but just wondering…
thinkfuture
  • 241
  • 1
  • 5
  • 12
0
votes
1 answer

Trying to write a M3U file in Qt with ID3_Tag info

I try to make a M3U file(playlist) but when I try to write a file my program crash without an error. bool Playlist::savePlaylist(QString path) { this->filename = path; QFile file(path); if((file.open(QIODevice::WriteOnly |…
1
2