FFMpeg - 为视频文件创建缩略图

FFMpeg - Creating Thumbnail for Video file(FFMpeg - 为视频文件创建缩略图)
本文介绍了FFMpeg - 为视频文件创建缩略图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我是 php 的新手.我已经在我的本地 iis 中安装了 ffmpeg .. 是否可以为 flv 文件生成缩略图.?请帮忙..

I am new to php. I have installed ffmpeg in my local iis.. Is it possible to generate a thumbnail image for a flv file.? Please help..

推荐答案

试试这个

$ffmpeg = 'ffmpeg.exe';

//video dir
$video = 'video.flv';

//where to save the image
$image = 'image.jpg';

//time to take screenshot at
$interval = 5;

//screenshot size
$size = '320x240';

//ffmpeg command
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&1";       
$return = `$cmd`;

命令选项说明:

-i 文件名(源视频的文件路径)
-deinterlace(将隔行视频转换为非隔行格式)
-an(录音被禁用;我们不需要它来制作缩略图)
-ss position(输入视频被解码和转储,直到时间戳到达位置,我们的缩略图的位置以秒为单位)
-f 输出文件格式
-t duration(输出文件在 duration 秒后停止写入)
-r fps(设置要写入的帧速率;fps 以赫兹(1/秒)表示;我们使用 1 以便我们只抓取一帧)
-y(如果已经存在则覆盖输出文件)
-s 宽x高(以像素为单位的框架大小)

-i filename (the source video's file path)
-deinterlace (converts interlaced video to non-interlaced form)
-an (audio recording is disabled; we don't need it for thumbnails)
-ss position (input video is decoded and dumped until the timestamp reaches position, our thumbnail's position in seconds)
-f output file format
-t duration (the output file stops writing after duration seconds)
-r fps (sets the frame rate to write at; fps is expressed in Hertz (1/seconds); we use 1 so that we grab only one frame)
-y (overwrites the output file if it already exists)
-s widthxheight (size of the frame in pixels)

这篇关于FFMpeg - 为视频文件创建缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Why can#39;t I update data in an array with foreach loop?(为什么我不能用 foreach 循环更新数组中的数据?)
Foreach for arrays inside of an array(Foreach 用于数组内的数组)
PHP array get next key/value in foreach()(PHP 数组在 foreach() 中获取下一个键/值)
Using preg_match on a multidimensional array to return key values arrays(在多维数组上使用 preg_match 返回键值数组)
php foreach as key, every two number as a group(php foreach 为key,每两个数字为一组)
Treat a PHP class that implements Iterator as an array(将实现 Iterator 的 PHP 类视为数组)