シェルスクリプトを実行する必要があります。キャッチは、私は、それがバックグラウンド・プロセスで実行したい、私は、コマンドが終了するまで、それは待たなければいけない。このphpでバックグラウンドでシェルスクリプトを実行
$Command = "nohup cvlc input --sout '#transcode {vcodec=h264,acodec=mp3,samplerate=44100}:std{access=http,mux=ffmpeg{mux=flv},dst=0.0.0.0:8083/".output"}' &";
$str = shell_exec($Command);
をしたいです。 私は他のPHPスレッドを望んでいないので、コマンドがタイムアウトするまでに3時間かかることがあります。
可能な複製:http://stackoverflow.com/questions/45953/php-execute-a-background-process –