我正在使用此代码作为我的缩略图
<?php
$ffmpeg = '/usr/bin/ffmpeg';
$second = 2;
$video = 'video/123.mp4';
$image = 'thumb/123.jpg';
$command = "$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -an -f rawvideo -s 175x150 $image";
它给我缩略图但我想旋转那个缩略图。我已经尝试过转置和旋转,但即使我丢失了缩略图也没有任何反应。
尝试过的解决方案但没有任何反应: -
$command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'transpose=1' -an -f rawvideo -s 175x150 $image";
和
$command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'rotate=PI/2' -an -f rawvideo -s 175x150 $image";
请帮帮我......