我有一个文件上传系统检查文件格式等,并在必要时转换为mp4。只要视频文件的总长度小于30秒,这就可以正常工作。 我已经测试了这两个短片大约每个10秒,它工作正常,但当我用一个剪辑测试这个33秒我得到错误:
致命错误:超出最长执行时间30秒 C:\ xampp \ htdocs \ own_it_all \ global.func \ file_upload.php 在线 59
我可以增加php.ini文件中的最大执行时间,但由于视频的最大长度为20分钟,这似乎非常用户友好,使用户每个视频等待20分钟。 有没有办法立即或尽可能地转换视频?
这是我有的exec cmd:
$cmd = "ffmpeg -i $input -vcodec h264 -acodec aac -strict -2 $o";
由于上传器允许多次上传,因此这是一个for循环。
foreach($_FILES['file']['name'] as $key => $name){
if($_FILES['file']['error'][$key] === 0){
$temp = $_FILES['file']['tmp_name'][$key];
$ext = explode('.',$name);
$ext = strtolower(end($ext));
$_file = md5($temp).time();
$file = $_file.'.'.$ext;
if(in_array($ext,$allowed) === true && move_uploaded_file($temp,"../uploads/{$file}") === true){
$file_type = explode('/',$_FILES['file']['type'][$key]);
if($file_type[0] === 'image'){
$succedeed[] = array('name' => $name,'file' => $file, 'type' => 'image');
}else{
$ffmpeg = 'ffmpeg';
$output = dirname(__DIR__).'/uploads/thumbs/'.$_file.'.jpg';
$input = dirname(__DIR__).'/uploads/'.$file;
$mov = new ffmpeg_movie($input);
$d = $mov->getDuration();
$iscopy = $mov->getCopyright();
$h = $mov->getFrameHeight();
$w = $mov->getFrameWidth();
$pos = ceil((int)$d /3);
$size = $w.'x'.$h;
$i = explode('.',$input);
$o = $i[0].'.mp4';
if(ceil($d) < 1200){
if($ext != 'mp4'){
$cmd = "ffmpeg -i $input -vcodec h264 -acodec aac -strict -2 $o";
//$cmd = "ffmpeg -i $input -vcodec h264 -acodec aac -s $size $o";
shell_exec($cmd);
$toclear[] = array('file' => $file);
}
$cmd = "ffmpeg -ss $pos -i $o -an -s $size $output";
shell_exec($cmd);
$total_time += $pos;
$succedeed[] = array('name' => $name,'file' => 'thumbs/'.$_file.'.jpg', 'type' => 'mp4');
}else{
$failed[] = array('name' => $name, 'file' => $file, 'error' => 'Video length cannot exceed 20mins.');
}
}
}else{
$failed[] = array('name' => $name, 'file' => $file, 'error' => 'File type not allowed');
}
}
}
答案 0 :(得分:1)
检查你的php ini并设置最长执行时间。在我的情况下,5分钟的视频使用ffmpeg转换超过30分钟。 您可以使用ajax来调用您的“转换器”php脚本,并使用jscript放置一个“loader”。