Hi,
We are trying to stream our new internet radio with shoutcast 2 and jplayer. What we want is publishing the name of songs from metadata which comes with mp3 stream from shoutcast.
I put the link of our stream into VLC player. VLC player can parse the title and artist of the song. How could i do this in html side with jplayer. With and without flash.
You can see my basic publishing code. I'm using jplayer 2.6.0.
$(document).ready(function(){
var stream = {
title:'Radio Redd',
};
$('#jp_jplayer_1').jPlayer({
ready:function(event){
$(this).jPlayer('setMedia',stream);
$(this).jPlayer('play');
},
swfPath:'p/jplayer.swf',
solution:'html,flash',
supplied:'mp3',
preload:'none',
wmode:'window'
});
});