Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. taglib
    Log in to post

    • UNSOLVED Using taglib on Windows
      General and Desktop • dll lib taglib tags • • DrageFabeldyr  

      3
      0
      Votes
      3
      Posts
      2811
      Views

      @raven-worx said: Once the compilation is finished it should at least have created a library linker file (.lib for MSVC) and a dll file (if you chose the "shared" option) ok, after command mingw32-make install i get this structure of files: C:\taglib\bin\ libtag.dll C:\taglib\bin\libtag_c.dll C:\taglib\bin\taglib-config.cmd C:\taglib\include\ taglib\ .h files C:\taglib\lib\pkgconfig\taglib.pc C:\taglib\lib\pkgconfig\taglib_c.pc C:\taglib\lib\ libtag.dll.a C:\taglib\lib\libtag_c.dll.a copy these files (maybe also the header files from the include folder) somewhere to your projects folder and add it to your project: QtCreator / manually so i copied libtag.dll, libtag.dll.a and taglib folder to D:\qtproject\myprojectfolder then added win32: LIBS += -L$$PWD/ -llibtag INCLUDEPATH += $$PWD/ DEPENDPATH += $$PWD/ to .pro file and #include "taglib/fileref.h" #include "taglib/taglib.h" #include "taglib/tag.h" to .cpp file and it works!! great!! thanx =))
    • UNSOLVED How to use TagLib into my Qt c++ Project
      General and Desktop • qt5.6 taglib metadata • • Punit  

      5
      0
      Votes
      5
      Posts
      3414
      Views

      Since your on Linux, why not install the taglib devel package from your distribution ?
    • UNSOLVED Including taglib in Qt project
      General and Desktop • windows qt 5.6.0 taglib • • Gagiopapinni  

      4
      0
      Votes
      4
      Posts
      1897
      Views

      @Gagiopapinni Okay, can you verify that this symbol is present in the static lib? (you could use "dependency walker" for that purpose)
    • SOLVED QString with taglib
      General and Desktop • qstringlist taglib • • shahriar25  

      6
      0
      Votes
      6
      Posts
      2146
      Views

      Thanks. It worked
    • SOLVED Taglib In Qt
      General and Desktop • music taglib • • shahriar25  

      12
      0
      Votes
      12
      Posts
      5112
      Views

      @shahriar25 Congrationations :) Good work!
    • Need Help with GStreamer and Invalid URI in QT Multimedia
      General and Desktop • qtmultimedia gstreamer taglib tags • • xtiwix  

      3
      0
      Votes
      3
      Posts
      2088
      Views

      The solution from SGaist helped me out when I had the same error messages, many thanks!
    • Program works on Linux but not on OSX
      General and Desktop • linux osx taglib • • devbrs  

      11
      0
      Votes
      11
      Posts
      2957
      Views

      @devbrs You certainly must check if taglib is null. And you must use toUTF8() instead of toAscii(). The last problem is that some of the string conversion functions in TagLib don't appear to work with the QString conversion functions. Namely the functions that create c++ string and wstring objects: QString::fromStdString(tag->title().to8Bit()); QString::fromStdWString(tag->title().toWString()); The functions that return c style string pointers do work: QString::fromWCharArray(tag->title().toCWString()); QString(tag->title().toCString(true)); Now, why the string functions work on Linux and not on the Mac, I don't know. Perhaps you could delve into it.