Extract metaData
Unsolved
QML and Qt Quick
-
I am trying to extract some metaData from some MP3 files.
Using Qt Quick, QML, i am able to use something like metaData.author and metaData.title to retreive author and title information. However, I cannot find a way to extract the cover Image. I have the same program written in QWidget app, and it works fine using metaData->ThumbnailImage, However, in QML there is not ThumbnailImage attribute for MetaData. Can anyone Help ? -
@BPit
In QML you would need to implement a custom QQuickImageProvider which you then pass the path to the MP3 file and return the extracted image. -
@raven-worx can you give me an example i am new to QML and QT?