Hi, in my radio project I try to play streamed audios with Ti.Media.AudioPlayer. It works fine. Now I wish to display embedded meta data from stream like described in this page.
var player = require('mymodule').createAudioPlayer({ allowBackground:true, icyMetaData:true }); player.addEventListener('icymeta',function(_e){ console.log(_e.title); console.log(_e.album) })My plan is to use the standard player from appcelerator and patch it. Is there an other solution?
Cheers!
Rainer