如下所示:
ffmpeg中文文档:http://linux.51yip.com/search/ffmpeg
ffmpeg -i test_baofeng.wmv -y -f image2 -ss 00:00:03 -v s 1 my .jpg
ffmpeg -i test.mp4 -y -f mjpeg -ss 3 -t 1 test1.jpg
-f fmt 强迫采用格式fmt
-I filename 输入文件
-y 覆盖输出文件
-t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持
-ss position 搜索到指定的时间 [-]hh:mm:ss[.xxx]的格式也支持
python使用ffmgep,通常用:subprocess ffmpeg/libav
--------------------python通过ffmgep抽帧---------------------
import os, sys from PIL import Image #open a pipe from a command a, b, c = os.popen3(\"ffmpeg -i test.avi\") out = c.read() dp = out.index(\"Duration: \") duration = out[dp+10:dp+out[dp:].index(\",\")] hh, mm, ss = map(float, duration.split(\":\")) #total time ss total = (hh*60 + mm)*60 + ss for i in xrange(9): t = int((i + 1) * total / 10) # ffmpeg -i test.mp4 -y -f mjpeg -ss 3 -t 1 test1.jpg os.system(\"ffmpeg -i test.avi -y -f mjpeg -ss %s -t 1 %i.jpg\" % (t, i)) \"\"\" num=int(total-3) i=0 for t in xrange(0,num,3): i = i+1 # ffmpeg -i test.mp4 -y -f mjpeg -ss 3 -t 1 test1.jpg os.system(\"ffmpeg -i test.avi -y -f mjpeg -ss %s -t 1 %s %i.jpg\" % (t,t, i)) \"\"\"
以上这篇python通过ffmgep从视频中抽帧的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
继续阅读与本文标签相同的文章
上一篇 :
python的函数(二):作用域
下一篇 :
C语言干货,零基础必看!
-
5G开启万物互联新畅想
2026-05-19栏目: 教程
-
5 分钟开发一个 AI 检测人体框架的 App
2026-05-19栏目: 教程
-
API网关
2026-05-19栏目: 教程
-
8.29直播预告 | 阿里云InfluxDB数据采集演示
2026-05-19栏目: 教程
-
通过阿里云活动购买了云服务器,再怎么购买和挂载数据盘
2026-05-19栏目: 教程
