Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

Audio metadata cannot read coverArtUrlSmall & coverArtUrlLarge

$
0
0
Hi folks, I’m using auido in qml, and trying to get the cover art. Now, I’m getting all I want from id3tags, except cover art. We have two properties; coverArtUrlSmall and coverArtUrlLarge. Although I am sure that my mp3 have cover art, both properties are ‘undefined’. How can I get the cover art from mp3 files? MediaPlayer { id: playMusic source: “trial.mp3” } MouseArea { id: playArea anchors.fill: parent onPressed: { playMusic.play(); console.log(playerArea.objToString(playMusic.metaData.coverArtUrlSmall)); // it writes ‘undefined’ console.log(playerArea.objToString(playMusic.metaData.coverArtUrlLarge)); // it writes ‘undefined’ } } Thanks & Regards, Aykut

Viewing all articles
Browse latest Browse all 4972

Trending Articles