Icecast Streaming Media Server Forum Index Icecast Streaming Media Server
Icecast is a Xiph Foundation Project
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Ices Skip Track PHP Script

 
Post new topic   Reply to topic    Icecast Streaming Media Server Forum Index -> Source Clients
View previous topic :: View next topic  
Author Message
Anonymous
Guest





PostPosted: Tue Aug 09, 2005 2:22 am    Post subject: Ices Skip Track PHP Script Reply with quote

Code:


<?php

/********************************************************/
/* Version .03                                          */
/* William J. Galway                                    */
/* http://www.galwayland.com                            */
/*                                                      */
/* .03 Released 8-Aug-2005                              */
/*  Changed exec("ps -A | grep ices | cut -c 0-6")   */
/*  to exec("ps -o \"%p\" --noheaders -C ices")      */
/*  Thanks Jens..                                       */
/*                                                      */
/* .02 Released 21-Jul-2005                             */
/* ------------------------                             */
/* Cleaned up code.                                     */
/*                                                      */
/* .01 Initial Release 18-Jul-2005                      */
/* -------------------------------                      */
/*                                                      */
/********************************************************/

header("Cache-Control: no-store, no-cache");
error_reporting(E_ALL);

$ICECAST_LOG_DIR = "/usr/local/var/log/icecast/";
$ICECAST_LOG_FILE = "playlist.log";
$ICECAST_SERVER = "http://www.galwayland.com";
$ICECAST_PORT = "8081";
$ICECAST_MOUNT_POINT = "/tunes.m3u";

/*--------------*/
/* Header       */
/*--------------*/

echo "<a href=\"http://www.galwayland.com/admin.php?op=IcecastAdmin\">Return to Icecast Admin</a><br><br>";
$date = date("l dS of F Y h:i:s A");
echo "$date<br>";

/*----------------------*/
/* Skip Track           */
/*----------------------*/

echo "---------------------------------------------<br>";
$pid = exec("ps -o \"%p\" --noheaders -C ices");
if ($pid >=1) {
echo "Ices Running On PID $pid <br>";
echo "Sending SIGUSR1 To Skip Track<br>";
echo "kill -s USR1 $pid <br>";
echo exec("kill -s USR1 $pid 2>&1 ", $out, $error);
sleep (3);
}
echo "---------------------------------------------<br>";

/*******************/
/* Checking Status */
/*******************/

echo "<br><br>";
echo "--------------------<br>";
echo "---Ices Status---<br>";
echo "--------------------<br>";

$pid2 = exec("ps -o \"%p\" --noheaders -C ices");
if ($pid2 >=1) {
sleep (10);
# The line below limited this file to Unix only.  It has been replaced
#  by the line below that.
#$lastsong_in_log = exec("tail -n 1 ".$ICECAST_LOG_DIR.$ICECAST_LOG_FILE);
$log_array = @file($ICECAST_LOG_DIR.$ICECAST_LOG_FILE);
$lastsong_in_log = $log_array[(count($log_array) - 1)];
$curr_song = explode("|",$lastsong_in_log);
echo "Ices Running On PID $pid2<br>";
echo "Ices Now Playing &nbsp<a href=\"".$ICECAST_SERVER.":".$ICECAST_PORT.$ICECAST_MOUNT_POINT."\">";
echo $curr_song[(count($curr_song) - 1)];
echo "</a><br>";
}
else {
        echo "Ices Not Running<br>";
        echo "Start Ices First<br>";
}
?>
Back to top
Anonymous
Guest





PostPosted: Thu Feb 16, 2006 11:09 pm    Post subject: thank you!1 Reply with quote

Weee!! Very Happy That was one weird and cool way of doing it, but it works. Thanks!
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Icecast Streaming Media Server Forum Index -> Source Clients All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2002 phpBB Group
subRebel style by ktauber