Page 1 of 1

now playing on own server

Posted: 12 Apr 2013 22:34
by Soulmaster
hello , is there a way to send the nowplaying tags automatic to my shoutcast server. The music server and the shoutcast server are one and the same server.

and is there a script for sending the nowplaying to twitter ?

Re: now playing on own server

Posted: 12 Apr 2013 23:12
by radio42
Something like this?
viewtopic.php?f=9&t=730

You might also for example assign the following command to the global 'Playlist.OnTrackPlay' event.
(see general settings, section 'Events/Commands')

Code: Select all

EXEC_SEND_HTTP_GET http://domain.com/update.php?artist=${artist}&song=${title}
Other control-commands might be used instead (depending on your web-site), e.g.:
- EXEC_SEND_HTTP_POST
- EXEC_SEND_TCP
- EXEC_SEND_SQL
- EXEC_UPLOAD_FILE
(see the User Manual Appendix for details)

On your web-site you might...
When using EXEC_SEND_HTTP_GET:
In your PHP script you can now access the params like this:
$artist = $_GET["artist"];
$song = $_GET["song"];
More info here: http://www.w3schools.com/php/php_get.asp

When using EXEC_SEND_HTTP_POST:
Use the following in your PHP script:
$artist = $_POST["artist"];
$song = $_POST["song"];
More info here: http://www.w3schools.com/php/php_post.asp

A certain Twitter update function is not available, but via the above you might easily implement something from within your web-site I guess.

Re: now playing on own server

Posted: 12 Apr 2013 23:33
by Soulmaster
tnx :) going to try this.

Re: now playing on own server

Posted: 13 Apr 2013 08:02
by Soulmaster
\o/ works GREAT...

Re: now playing on own server

Posted: 22 Mar 2016 15:48
by XTended
The NowPlaying is working great on my site.
I read several topics here about pushing the nowplaying to Twitter, but I haven't found the right solution yet.
Does somebody who uses ProppFrexx push the nowplaying to Twitter at this moment and will you share it with me?

Re: now playing on own server

Posted: 06 Aug 2016 14:57
by moogwill
Ti push to twitter you cans use a simple ifttt.com recipe ... easy to do with a simple send mail macro

check mine https://twitter.com/nowonplayloud

Re: now playing on own server

Posted: 11 Jul 2023 10:41
by Vladimir
Hi all,
the links are down and really i would try to send to Twitter artist/song title when change ... any info / help ???
thanks !