Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让用户使用 php 代码将视频上传到 mp4?我一直在尝试找到一个自动将视频转换为 mp4 的代码,无论这可能是什么类型的视频格式?
如果你在你的服务器上尝试这个/不使用任何在线工具。您可以为此使用FFmpeg 。转换示例代码:
ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4
FFmpeg 是用于此目的的最广泛使用的工具,您可以在此处下载相同的工具。
//This code convert video to mp4 format. //for that you have to install HandBrakeCLI on your linux server system("HandBrakeCLI -i ".$currfileName." -o ".$new_convertedvideo.".mp4 -v -m -E aac,ac3 -e x264");