我正在尝试上传视频文件,它工作正常,但我需要在视频文件上传成功时获得第一个捕获图像。我正在尝试这种方式获取图像,但有时它不起作用
$tmppath3="services/video/".$cardvideo;
if(move_uploaded_file($_FILES['cardvideo']['tmp_name'],$tmppath3))
{
$thumb=$date.".jpg";
$thumbDirectory="services/VideoCapturePic/";
exec("convert \"{$tmppath3}[0]\" -colorspace RGB -geometry 200 $thumbDirectory$thumb");
}
所以任何想法请指导我..
感谢您提前。
答案 0 :(得分:0)
对不起,我应该评论一下,但是,我没有特权,那就是我在这里写的原因:
你可以谷歌如何在PHP中使用ffmpeg .. This might be one of the useful result