如何在ffmpeg中旋转缩略图

时间:2014-05-27 09:44:48

标签: php ffmpeg

我正在使用此代码作为我的缩略图

<?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";

请帮帮我......

0 个答案:

没有答案