我特林为了得到一个视频输出的它喂FFmpeg的蒙山通过PHP的图像序列。 我使用这个shell命令从文本读取文件的图像文件名:
cat $(cat " . $image-list-file . ") | ffmpeg -f image2pipe ...
我想输出到管道舞会PHP,通过imagemagik或GD修改后的图像可能。
我如何在PHP中做到这一点?
编辑:
解
使用proc_open和缓冲的组合做的工作。 下面是使用一些GD图片生成一个工作的测试脚本。
<?php
set_time_limit(0);
$descriptors = array(
0 => array("pipe", "r")
);
$command = "ffmpeg -f image2pipe -pix_fmt rgb24 -r 30 -c:v png -i - ".
"-r 30 -vcodec libx264 -pix_fmt yuv420p ".
"-y test.mp4";
$ffmpeg = proc_open($command, $descriptors, $pipes);
if (is_resource($ffmpeg)){
for ($i = 0; $i < 180; $i++) {
$im = @imagecreate(300, 300) or die("GD error");
$background_color = imagecolorallocate($im, 0, 0, 0);
$line_color = imagecolorallocate($im, 233, 14, 91);
$x = rand(0, 300);
imageline ($im, $x, 0, $x, 300, $line_color);
ob_start();
imagepng($im);
fwrite($pipes[0], ob_get_clean());
imagedestroy($im);
}
fclose($pipes[0]);
}