I'm attempting to run the following command in PHP (on Ubuntu):
it is start button start
<?php
if (exec("ffmpeg -i input.avi output.avi >/dev/null 2>/dev/null&"))
{ echo "Success"; }
else { echo "No good"; }
so after start how i can kill-stop this with -php code
Any ideas on this be working for stop it? Thanks.