我正在为我的 iPhone 应用程序开发 PHP 网络服务,以便用户上传视频。当用户想在网站上观看视频时,他们会得到一个水平视频,所以我需要使用 FFmpeg 命令旋转视频。有人能帮我吗?
function make_rotation($input, $output, $transpose="1") {
$ffmpegpath = "ffmpeg";
if(!file_exists($input)) return false;
//$command = "$ffmpegpath -i $input -vf 'transpose=$transpose' $output";
//$command = "ffmpeg -vfilters 'rotate=270' -i $input $output";
$command ="ffmpeg -i $input -vf 'transpose=$transpose' $output";
exec($command);
return true;
}
谢谢大家