首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >视频转换需要时间

视频转换需要时间
EN

Stack Overflow用户
提问于 2015-09-02 08:19:36
回答 1查看 1.4K关注 0票数 1

你好,我有一个像youtube这样的视频托管站点,我允许上传几乎所有类型的视频,但是我想把所有上传的视频转换成mp4格式。

我可以这样做,我的代码如下

代码语言:javascript
复制
  require 'vendor/autoload.php';
        $getEXT_check=substr(@$_FILES['profileimage99']['name'],-3);
        if($getEXT_check !='mp4' || $getEXT_check !='MP4'){
        exec('ffmpeg -i '.$uploadfile.' -f mp4 -s 896x504 '.$new_flv.''); }
        //execute ffmpeg and create thumb
        exec('ffmpeg  -i '.$uploadfile.' -ss 00:00:28.435 -vframes 1  '.$new_image_path);
        $theduration=exec('ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 '.$uploadfile.' 2>&1');
        $theduration_val=round($theduration/60, 2);

此代码将非mp4视频转换为mp4,并获得缩略图并获得正确的持续时间,但问题是,如果我上传大约100 mkv的flv或mkv格式,这个过程需要花费大量的时间,比如超过2-3小时。

如果你需要看整页代码,请给我一些更好的建议。

完整代码:

代码语言:javascript
复制
     <?php
    @session_start();
   include "conn.php";
    include "date.php";
   $sid = $_SESSION['id'];
   $ipIP=$_SERVER['REMOTE_ADDR'];
   $uploaddir = "members/$sid/video/";

     //Check the file is of correct format.  
      function checkfile($input){
      $ext = array('mpg', 'wma', 'mov', 'flv', 'mp4', 'avi', 'qt', 'wmv', 'rm', 'mkv', 'MP4','3gp');
      $extfile = substr($input['name'],-4);
      $extfile = explode('.',$extfile);
        $good = array();
      @$extfile = $extfile[1];
     if(in_array($extfile, $ext)){
     $good['safe'] = true;
     $good['ext'] = $extfile;
     }else{
      $good['safe'] = false;
       }
      return $good;
         }
       if($_FILES["profileimage99"]["size"] ==''){
     echo 'No file added';die;
        }
  // if the form was submitted process request if there is a file for uploading
   if(@$_FILES["profileimage99"]["size"] < 102400000000){
   //$live_dir is for videos after converted to mp4
    $live_dir = "mem/$sid/video/";
  //$live_img is for the first frame thumbs.
    $live_img = "mem/$sid/img/";        
    $seed = rand(11111111111193,9999999999999929) * rand(3,9);
    $getEXT=substr(@$_FILES['profileimage99']['name'],-5);
    $upload = $seed.$getEXT;
    $uploadfile = $uploaddir .$upload;        

    $safe_file = checkfile(@$_FILES['profileimage99']);
    if($safe_file['safe'] == 1){
                if (move_uploaded_file(@$_FILES['profileimage99']['tmp_name'], $uploadfile)) {

                $base = basename($uploadfile, $safe_file['ext']);
                $new_file = $base.'mp4';
                $new_image = $base.'jpg';
                $new_image_path = $live_img.$new_image;
                $new_flv = $live_dir.$new_file;

        require 'vendor/autoload.php';
        $getEXT_check=substr(@$_FILES['profileimage99']['name'],-3);
        if($getEXT_check !='mp4' || $getEXT_check !='MP4'){
        exec('ffmpeg -i '.$uploadfile.' -f mp4 -s 896x504 '.$new_flv.''); }
        //execute ffmpeg and create thumb
        exec('ffmpeg  -i '.$uploadfile.' -ss 00:00:28.435 -vframes 1  '.$new_image_path);
        $theduration=exec('ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 '.$uploadfile.' 2>&1');
        $theduration_val=round($theduration/60, 2);
    //create query to store video
    if(isset($_POST['title'])){$titlename=$_POST['title'];}else{$titlename='';}
    if(isset($_POST['desc'])){$desc=$_POST['desc'];}else{$desc='';}
    if(isset($_POST['catag'])){$catag=$_POST['catag'];}else{$catag='';}
    if(isset($_POST['channel'])){$channel=$_POST['channel'];}else{$channel='';}
    $dbentry_o=mysqli_query($conn,"insert into vids (uid,chid,ctid,vname,vdisc,duration,time,ip,src,thumb) values ('$sid','$channel','$catag','$titlename','$desc','$theduration_val','$date','$ipIP','$new_file','$new_image')");
    echo "<img src='mem/$sid/img/$new_image' class='The_Append_L_snap'/>";die;
         } else {
                echo "Possible file upload attack!\n";
                print_r($_FILES);
         }

    }else{

         echo 'Invalid File Type Please Try Again. You file must be of type 
         .mpg, .wma, .mov, .flv, .mp4, .avi, .qt, .wmv, .rm'.$_FILES['profileimage99']['name'];

    }
  }else{
 echo 'Please choose a video';die;
  }
  ?>

问题:

上面的FFmpeg调用需要花费太多的时间将视频转换为MP4。

注:

在未来,我将有一个高质量的选择在我的video.js播放器。

EN

回答 1

Stack Overflow用户

发布于 2015-09-02 08:29:21

来自的文章

代码语言:javascript
复制
The general guideline is to use the slowest preset that you have patience for. Current presets in descending order of speed are: ultrafast,superfast, veryfast, faster, fast, medium, slow, slower, veryslow, placebo. The default preset is medium. Ignore placebo as it is not useful (see FAQ). You can see a list of current presets with -preset help (see example below), and what settings they apply with x264 --fullhelp.

您可以使用-preset ultrafast,但要注意质量

附加链接

https://superuser.com/questions/490683/cheat-sheets-and-presets-settings-that-actually-work-with-ffmpeg-1-0

https://askubuntu.com/questions/352920/fastest-way-to-convert-videos-batch-or-single

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/32348016

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档