0

我想将一些 GIF 转换为 mp4。我尝试使用 CloudConvert,但是当我安装软件包并配置 curl.cainfo 时,我收到一条消息,上面写着

CurlFactory.php 第 271 行中的 FatalErrorException:
超过 120 秒的最大执行时间

这是转换代码 在此处输入图像描述

4

1 回答 1

0

视频编码过程可能需要几分钟的转换时间。为避免此类 CURL 超时问题,您应该使用异步实现:

# Script: sendConversion
CloudConvert::file('/a/path/to/file.gif')
            ->callback('http://myserver.com/save_file.php')
            ->convert('mp4');

在“save_file.php”中:

# Script: saveFile
CloudConvert::useProcess($_REQUEST['url'])
            ->save('/path/converted.mp4');
于 2016-07-14T13:35:34.837 回答