• <i id='EoA0I'><tr id='EoA0I'><dt id='EoA0I'><q id='EoA0I'><span id='EoA0I'><b id='EoA0I'><form id='EoA0I'><ins id='EoA0I'></ins><ul id='EoA0I'></ul><sub id='EoA0I'></sub></form><legend id='EoA0I'></legend><bdo id='EoA0I'><pre id='EoA0I'><center id='EoA0I'></center></pre></bdo></b><th id='EoA0I'></th></span></q></dt></tr></i><div id='EoA0I'><tfoot id='EoA0I'></tfoot><dl id='EoA0I'><fieldset id='EoA0I'></fieldset></dl></div>

  • <legend id='EoA0I'><style id='EoA0I'><dir id='EoA0I'><q id='EoA0I'></q></dir></style></legend>

        <bdo id='EoA0I'></bdo><ul id='EoA0I'></ul>

      <small id='EoA0I'></small><noframes id='EoA0I'>

      1. <tfoot id='EoA0I'></tfoot>
      2. FFMpeg - 为视频文件创建缩略图

        时间:2023-09-20

          • <legend id='emws3'><style id='emws3'><dir id='emws3'><q id='emws3'></q></dir></style></legend>

            <small id='emws3'></small><noframes id='emws3'>

                <tbody id='emws3'></tbody>

              <tfoot id='emws3'></tfoot>
                • <bdo id='emws3'></bdo><ul id='emws3'></ul>
                • <i id='emws3'><tr id='emws3'><dt id='emws3'><q id='emws3'><span id='emws3'><b id='emws3'><form id='emws3'><ins id='emws3'></ins><ul id='emws3'></ul><sub id='emws3'></sub></form><legend id='emws3'></legend><bdo id='emws3'><pre id='emws3'><center id='emws3'></center></pre></bdo></b><th id='emws3'></th></span></q></dt></tr></i><div id='emws3'><tfoot id='emws3'></tfoot><dl id='emws3'><fieldset id='emws3'></fieldset></dl></div>
                  本文介绍了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 - 为视频文件创建缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP - 如何让 Shell 错误回显到屏幕上 下一篇:复制在 stackoverflow 上编写的步骤以在 wamp 上安装

                  相关文章

                  最新文章

                  <tfoot id='Keo76'></tfoot>
                  1. <i id='Keo76'><tr id='Keo76'><dt id='Keo76'><q id='Keo76'><span id='Keo76'><b id='Keo76'><form id='Keo76'><ins id='Keo76'></ins><ul id='Keo76'></ul><sub id='Keo76'></sub></form><legend id='Keo76'></legend><bdo id='Keo76'><pre id='Keo76'><center id='Keo76'></center></pre></bdo></b><th id='Keo76'></th></span></q></dt></tr></i><div id='Keo76'><tfoot id='Keo76'></tfoot><dl id='Keo76'><fieldset id='Keo76'></fieldset></dl></div>

                    <small id='Keo76'></small><noframes id='Keo76'>

                      • <bdo id='Keo76'></bdo><ul id='Keo76'></ul>

                      <legend id='Keo76'><style id='Keo76'><dir id='Keo76'><q id='Keo76'></q></dir></style></legend>