如何使用 ffmpeg 转换视频

2021-12-26 00:00:00 ffmpeg php

我想使用 ffmpeg 将视频从一种格式转换为另一种格式.我尝试了很多代码,但它没有转换视频.

I want to convert a video from one format to another using ffmpeg. I try lots of code but it does not convert the video.

例如:

exec("ffmpeg -i mickey.flv -ar 22050-ab 32 -f avi -s 320x240 mickey.avi");

exec("ffmpeg -i mickey.flv -ar 22050 -ab 32 -f avi -s 320x240 mickey.avi ");

这段代码不会转换视频,也不会显示任何错误,会持续加载.

This code does not convert the video, it does not show any error, it is loading continuously.

推荐答案

Display FFMPEG Error Output:

Display FFMPEG Error Output:

命令行:

$command = "ffmpeg -i mickey.flv -ar 22050 -ab 32 -f avi -s 320x240 mickey.avi ";

exec($command . ' 2>&1', $output);

print_r($output);

相关文章