我在google cloud
上的视频存储空间中,我需要为我的视频创建thumbnail
它才会远程,我尝试使用FFmpeg
来创建和获取拇指的内容,但它不起作用,它只为我返回null。
public function create_video_thumb($video){
$ffmpeg = '/usr/bin/ffmpeg';
try{
$cmd = "ffmpeg -i $video -deinterlace -an -ss 00:00:10 -vframes 1 -f image2 'test.jpg' ";
$return = array(
'success'=>true,
'content' => $cmd
);
}catch (Exception $e){
$return = $e->getMessage();
}
return $return;
}
返回:
{
"sucess":true,
"content":null
}