超过 120 秒的最长执行时间 laravel 5.2
Maximum execution time of 120 seconds exceeded laravel 5.2
我想将一些 GIF 转换为 mp4。我尝试使用 CloudConvert,但是当我安装软件包并配置 curl.cainfo 时,我收到的消息是
FatalErrorException in CurlFactory.php line 271:
Maximum execution time of 120 seconds exceeded
这是转换代码
视频编码过程可能需要几分钟的转换时间。为避免此类 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');
我想将一些 GIF 转换为 mp4。我尝试使用 CloudConvert,但是当我安装软件包并配置 curl.cainfo 时,我收到的消息是
FatalErrorException in CurlFactory.php line 271:
Maximum execution time of 120 seconds exceeded
这是转换代码
视频编码过程可能需要几分钟的转换时间。为避免此类 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');