[Icecast] metadata 2
uno
un at dom.de
Mon Mar 24 10:42:29 UTC 2014
you could set up a php yp-server and add a line in the icecast config
$email = "you at somewhere";
if($_REQUEST['action'] == "remove"){
header("YPResponse: 1");
header("YPMessage: Deleted server info.");
mail($email,'YP debug: remove stream',print_r($_REQUEST,true));
}
if($_REQUEST['action'] == "add"){
header("YPResponse: 1");
header("YPMessage: Successfully added.");
header("SID: your_session_id_1234567890");
header("TouchFreq: 15");
mail($email,'YP debug: add stream',print_r($_REQUEST,true));
}
if($_REQUEST['action'] == "touch"){
header("YPResponse: 1");
header("YPMessage: Updated server info.");
mail($email,'YP debug: update stream',print_r($_REQUEST,true));
}
"touch" results in
Array
(
[action] => touch
[sid] => your_session_id_1234567890
[st] => your song title and artist info
[listeners] => 1
[max_listeners] => 100
[stype] =>
)
bests, uno
Guido Budack:
> Hoi folks,
>
> I don't like to post in newsletter because of several reason but sometimes it
> isn't evitable.
> I am setting up a internet-radio-show (exclusively live, including 2 video-streams)
> and I want to read out the audio-metadata of momentarily played tracks in realtime
> to compare it against a SQL-database.
> The aim is to fill up and/or update a table with 'most played' audio-tracks.
>
> I'm using the following free tools/ software:
>
> Mixx (and others)-> Jack <-> Ardour -> icecast
>
> I'm desperately searching for any possibility to read out the metadata and to bind
> it into some php srcipt to accomplish the database- update.
>
> Any web-queries like 'jQuery Plugin metadata', 'metadata on the fly read out',
> 'php metadata' and more or similar containing the above mentioned software-names
> don't bring any satisfying result.
>
> Any suggestions are very welcome!
>
> Greets
>
> Gee
> _______________________________________________
> Icecast mailing list
> Icecast at xiph.org
> http://lists.xiph.org/mailman/listinfo/icecast
More information about the Icecast
mailing list