FFMpeg - Creating Thumbnail for Video file(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 - 为视频文件创建缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:FFMpeg - 为视频文件创建缩略图


- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01