简体   繁体   English

在 laravel 中使用 php-ffmpeg 转换和保存视频时编码失败

[英]Encoding failed during converting and saving video using php-ffmpeg in laravel

i'm using https://github.com/PHP-FFMpeg/PHP-FFMpeg package to convert user video uploads to mp4 format, note that I'm using Laravel framework for development process.我正在使用https://github.com/PHP-FFMpeg/PHP-FFMpeg package 将用户视频上传转换为mp4格式,请注意我正在使用ZA5C95B86291EA299ZFCBE644 框架进行开发。
But I'm facing error for this and Im not really sure what im doing wrong because all it says is that Encoding is failed.但是我正面临这个错误,我不确定我做错了什么,因为它所说的只是编码失败。 I attached the errors image below you can see that at the bottom.我附上了下面的错误图片,您可以在底部看到它。

This is my function which handles user uploads:这是我的 function 处理用户上传:

public function upload()
    {
        $this->putVideoIntoStorage();
        $this->ffmpeg->saveVideo($this->storageManager->getAbsolutePathOf($this->video->getClientOriginalName()));

        return $this->saveVideoIntoDatabase();
    }

This is the function which handles saving and converting video to mp4 using php-ffmpeg这是 function 处理使用php-ffmpeg将视频保存和转换为mp4

 public function saveVideo(String $path)
    {

        $ffmpeg = FFMpeg::create([
            'ffmpeg.binaries' => config('services.ffmpeg.ffmpeg_path'),
            'ffprobe.binaries' => config('services.ffmpeg.ffprobe_path'),
            'timeout'          => 3600, // The timeout for the underlying process
            'ffmpeg.threads'   => 12,   // The number of threads that FFMpeg should use
        ]);


        $video = $ffmpeg->open($path);

        $video->save(new X264(), 'video.mp4');
    }

This is the error im getting: Errors Image这是我得到的错误:错误图像
I can provide more details if you need just ask me, I would be really glad if someone can help me through this.如果您需要问我,我可以提供更多详细信息,如果有人可以帮助我解决这个问题,我将非常高兴。

Here's the proper way to do it:这是正确的方法:

$format = new FFMpeg\Format\Video\X264();
$format->setAudioCodec("libmp3lame");

$video->save($format, '/path/to/new/file');

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM