gpt4 book ai didi

php - Wordpress 上传视频转换 MP4 格式

转载 作者:行者123 更新时间:2023-12-04 23:27:38 25 4
gpt4 key购买 nike

创建自定义视频转换插件 - MP4 格式

Bellow upload code work fine but how to convert MP4 format after insert media library.


    media_handle_upload('upload_video_file', 0)       

exec("ffmpeg -i $fullsize_path -ar 22050 -ab 32 -f mp4 -s 320x240 $value");

<form method="post" enctype="multipart/form-data">
<input type='file' id='upload_video_file' name='upload_video_file'></input>
<?php submit_button('Upload') ?>
</form>

最佳答案

如果您使用 ffmpeg 转换视频,请首先确保其在您的服务器上正确安装并运行。
检查您的服务器上是否安装了 ffmpeg。

$ffmpeg = shell_exec('which ffmpeg')); 
$ffmpeg = shell_exec('type -P ffmpeg');

如果 $ffmpeg返回空则表示它未安装在您的服务器上,如果返回绝对路径则表示已安装在您的服务器上。

然后可以执行 exec commond 就像下面一样
exec("ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4");
-vcodec参数指定用于输出视频的编码格式。
-acodec编解码器(输入/输出)
设置音频编解码器。这是 -codec:a 的别名

更多常见检查 ffmpeg 链接 https://ffmpeg.org/ffmpeg.html

关于php - Wordpress 上传视频转换 MP4 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37414005/

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