我正在使用fileuploader.js
上传视频文件。现在我想将视频格式转换为.mp4
. 我已经使用ffmpeg
并在上传后将php
视频转换为.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
不正确。请帮忙。