6

我正在尝试从外部视频创建缩略图,主要是 MP4 和 FLV。我正在使用FFmpegPHP。我已经使缩略图生成工作正常,但是,我需要先将视频完全加载到我的服务器上。是否可以只流式传输视频的一小部分然后从中提取缩略图?

这是我到目前为止的代码:

require_once PRIV . 'Vendor/FFmpegPHP/FFmpegAutoloader.php';

// Download the whole video.
$video = file_get_contents($_PUT['video']);
$file = 'path_to_cache';
file_put_contents($file, $video);

$movie = new FFmpegMovie($file);

// Generate the thumbnail.
$thumb = $movie->getFrame($movie->getFrameCount() / 2);
$thumb->resize(320, 240);
imagejpeg($thumb->toGDImage(), 'path_to_thumb');

有人有建议吗?

编辑

正如布拉德建议的那样,这是更新的代码:

$file = CACHE . 'moodboard_video_' . rand();
$fh = fopen($file, 'w');
$size = 0;

curl_setopt($ch, CURLOPT_URL, $_PUT['video']);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function($ch, $data) use($fh, &$size){
    $length = fwrite($fh, $data);

    if($length === FALSE) {
        return 0;
    } else {
        $size += $length;
    }

    // Downloads 1MB.
    return $size < 1024 * 1024 * XXXXXX ? $length : 0;
});

curl_exec($ch);

fclose($fh);
curl_close($ch);

// Create the thumbnail.
$thumb = $movie->getFrame(XXXXXX);
$thumb->resize(static::DEFAULT_THUMBNAIL_WIDTH, $thumb->getHeight() / $thumb->getWidth() * static::DEFAULT_THUMBNAIL_WIDTH);
$image = $thumb->toGDImage();
imagejpeg($image, PRIV . static::THUMBNAILS_PATH . $item->getLastInsertIdentifier() . '_' . static::DEFAULT_THUMBNAIL_WIDTH);
4

2 回答 2

3

FFMPEG 非常适合处理损坏的流。因此,我认为您应该尝试下载该远程媒体的前几兆,并尝试从不完整的文件中获取缩略图。

首先,删除file_get_contents()并使用 cURL。您可以将CURLOPT_WRITEFUNCTION选项设置为您的自定义函数,该函数逐块写入磁盘上的临时文件。当您收到足够的数据时,0从您的函数返回,cURL 将停止下载。您将不得不进行试验以查看最佳尺寸。如果您获得的数据太少,您将只能使用最早的帧,或者根本没有帧。太晚了,你在浪费带宽。

对于某些容器类型,文件信息位于文件末尾。对于那些,我没有给你的建议。缺少编写自己的解码器并从头开始拼接信息,我不知道在不下载整个文件的情况下如何做到这一点。

于 2012-10-01T13:45:51.933 回答
0

使用基于类的结构的 PHP 5、ffmpeg 和 CURL 运行代码如下:

require_once  'PHP_CURFN/ffmpeg-php-master/FFmpegFrame.php';
  require_once  'PHP_CURFN/ffmpeg-php-master/FFmpegAutoloader.php';

class MyVideoTest{

private $fh="";
private $size=0;
private $ch="";

public function __construct(){

                $video = 'http://[hosturl]/video/41a669911fd635167475d7530bffcc9f.mp4';
                $file = 'PHP_CURFN/cache/tmp_video_' . rand();


                $this->ch = curl_init();
                $this->fh = fopen ($file, 'w+');
                $this->ch = curl_init($video);

                $this->size = 0;
                curl_setopt($this->ch, CURLOPT_URL, $video);
                curl_setopt($this->ch, CURLOPT_HEADER, 0);


                curl_setopt($this->ch, CURLOPT_WRITEFUNCTION, array($this, "myfunction"));

                curl_exec($this->ch);

                fclose($this->fh);
                curl_close($this->ch);
                $movie = new FFmpegMovie($file);
                // Create the thumbnail.

                $thumb = $movie->getFrame(2);
                $thumb->resize(320, 240);
                $image = $thumb->toGDImage();
                imagejpeg($image, 'PHP_CURFN/cache' . $item->getLastInsertIdentifier() . '_' . 320);

}
function myfunction($ch, $data)     {
        $length = fwrite($this->fh, $data);
        $size=&$this->size;

        if($length === FALSE) {
            return 0;
        } else {
            $size += $length;
        }

        // Downloads 1MB.

        return $size < 1024 * 1024 *1 ? $length : 0;
} }


$MyVideoTest= new MyVideoTest();
pr($MyVideoTest);
exit;
于 2013-01-22T06:14:43.733 回答