summaryrefslogtreecommitdiff
path: root/streamstatus.php
blob: ebed6b41adeda54e44bb556eba83ba7dc1e3b26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php

if (file_exists('config.php'))
	include ('config.php');
else
	include ('config_default.php');

global $maxencodingprocesses;

header('Content-Type: text/xml'); 
echo "<?xml version=\"1.0\"?>\n";

echo "<status>\n";

// First check that we are allowed to create a new encoding process
$nbencprocess = exec("find -name segmenter.pid | wc | awk '{ print $1 }'");
if ($nbencprocess > $maxencodingprocesses)
	echo "<streamstatus>error</streamstatus><message>Error: maximun number of sessions reached</message>\n";
else
{
	$session = $_REQUEST['session'];

	$cnt = 0;
	while ( ( count(glob('ram/' .$session . '/*.ts')) < 2 ) && ( $cnt < 25 ) )
	{
		// wait for stream available
		sleep(1);
		$cnt++;
	}

	if ( count(glob('ram/' .$session '/*.ts')) < 2 )
		echo "<streamstatus>error</streamstatus><message>Error: encoding did not start correclty</message>\n";
	else
		echo "<streamstatus>ok</streamstatus>\n";
}

echo "</status>\n";

?>