File "stop_video.php"
Full Path: /home/analogde/www/XTRAIL/WORKAREA/Upload_code/Transfert/stop_video.php
File size: 319 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
if($_SESSION['motion'] == "yes")
{
$pid = exec("pidof motion");
//echo $pid;
$cmd = "sudo kill -9 " .$pid;
//echo $cmd;
exec($cmd);
echo "Fin du processus Motion";
$_SESSION['motion'] = "no";
}
else {
echo "Le process Motion ne tourne pas";
}
?>