从本地系统上传后,将视频转换为.mp4格式不会显示视频,只会听到声音


Converting video to .mp4 format after upload from local system does not show the video only hear sound

我正在使用fileuploader.js上传视频文件。现在我想将视频格式转换为.mp4。上传后,我使用ffmpegphp将视频转换为.mp4。我使用的样本段是

$converted = "uploads/".$uniqid.".mp4"; //$uniqid is the id for the video after upload
$cmd = "$ffmpeg -i $sourceUrl -f mp4 $converted"; //$sourceUrl is the path of the video

我曾尝试将.flv视频文件转换为.mp4格式,但问题是我无法看到视频,只能听到转换后的声音。$cmd中使用的转换行是否不正确。请帮忙。

只要ffmpeg -i source.flv output.mp4就足够了,它将使用mp4的默认编解码器。你能把ffmpeg的响应粘贴到上面的命令吗?