
ffmpeg
berlor
eesfes
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用ffmpeg从视频中截取图像帧
1. 问题 从视频中抽取图像帧,并按照指定命名规则保存。 2. 环境 centos 6.3 + ffmpeg 0.6.5 3. 方法 1)安装ffmpeg ffmpeg 位于rpmforge中,如果你的centos没有配置rpmforge,请先配置rpmforge。 yum -y install ffmpeg 并安装对应的依赖包。 2)...原创 2018-09-06 09:31:21 · 10193 阅读 · 1 评论 -
FFmpeg 命令demo
淡入淡出 ffmpeg -y -i bg.mp4 -loop 1 -i text.png -filter_complex [1:v]format=rgba,fade=t=in:s=275:d=1:alpha=1[v1];[0:v][v1]overlay=x=0:y=0 -t 15 a.mp4原创 2018-11-13 13:20:54 · 445 阅读 · 0 评论 -
ffmpeg drawtext
写多行文字 ffmpeg -i bg.mp4 -filter_complex [0]drawtext=ft_load_flags=render:shadowcolor=0xaaaaaa66:shadowx=5:shadowy=2:fontcolor=white:fontsize=80:text='A':x=1033:y=77:enable='between(t,5.1,8.0)'[aa];...原创 2018-12-05 11:47:02 · 4638 阅读 · 1 评论