gpt4 book ai didi

php - 将视频转换为 mp4 的最快方法

转载 作者:行者123 更新时间:2023-12-04 23:26:43 24 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改进这个问题?通过 editing this post 添加详细信息并澄清问题.


2年前关闭。







Improve this question




实际上我的视频转换脚本是使用 PHP-FFMpeg/PHP-FFMpeg包裹 :

$ffmpeg   = FFMpeg::create(
[
'ffmpeg.binaries' => getenv('FFMPEG_PATH').'/ffmpeg',
'ffprobe.binaries' => getenv('FFMPEG_PATH').'/ffprobe',
'timeout' => 3600,
'ffmpeg.threads' => 12,
]
);
$video = $ffmpeg->open($original_path_here);
$format = new X264();
$format->setAudioCodec('libmp3lame');
$video->save($format, $converted_path_here);

但是每个(不到 1 分钟)视频的转换时间很长。有什么办法可以提高转换时间吗?

最佳答案

实际上,该软件包不允许修改 ffmpeg 命令的更多选项(为了获得更快的视频转换)。

然后我决定使用以下 PHP 行简单地转换视频:

shell_exec("ffmpeg -i $original_path_here -c:a copy -c:v libx264 -preset superfast -profile:v baseline $converted_path_here");

关于php - 将视频转换为 mp4 的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43659484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com