所以我/我尝试使用 php 解析来自 ffmpeg 输入的裁剪检测值:
<form method="post" enctype="multipart/form-data">
<input type="file" name="video" />
<input type="submit" name="crop" value="crop"/>
</form>
</body>
<?
if(isset($_POST['crop'])){
$ffmpeg = '/usr/local/Cellar/ffmpeg/1.2.1/bin/ffmpeg';
shell_exec($ffmpeg ." -i ".$_FILES['video']['tmp_name']." -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1
");
}
?>
但我得到一个错误:
Undefined variable: NF
我不知道该怎么做任何帮助将不胜感激。