Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドは
ffmpeg -i path/to/video.avi path/to/video.mpg
コマンドラインからは正常に動作します。しかし、exec()PHPs で呼び出すと戻り値は 127 で、FFMPEG を検出していないようです。私は何を間違っていますか?私はlocalhostにいて、セーフモードはオフですが、FFMPEGとexec(). 前もって感謝します。
exec()
試す
exec(/path/to/ffmpeg -i path/to/video.avi path/to/video.mpg);
Linux / WindowsでffmpegコマンドをPATH環境変数として登録しましたか???? PATH 変数として設定しなかったようです。そのため、機能するように FFMPEG コマンドへのフル パスを含める必要があります。