转mp4格式
ffmpeg -i input.mp4 output.avi
FFMPEG -i uploadfile/video/test.wmv -c:v libx264 -strict -2 uploadfile/mp4/test.mp4
FFMPEG -i uploadfile/video/test.wmv -c:v libx264 -strict -2 -s 1280x720 -b 1000k uploadfile/mp4/test.mp4
截取一张图片
使用说明
测试视频
66666.MP4
2155秒
请问视频1秒播放几帧图像,使用ffmpeg反复在同一秒截取图片是否截取的是同一帧图像?
答案是:是同一张图片
【通过】截取一张图片
ffmpeg -ss 00:00:30 -i input.mp4 -f image2 -y 66666-1.jpg
参数说明
-i 设定输入流
-f 设定输出格式 【网上说一般不用,会更加后缀名自动识别,但是我还是每次都加上】
image2 表示输出jpg格式
-ss 开始时间【时间格式:允许毫秒】 从视频哪里开始处理
比如下面的格式都是有效的
‘55’
55 seconds
‘12:03:45’
12 hours, 03 minutes and 45 seconds
‘23.189’
23.189 seconds
-y 覆盖输出文件 同名 不需要询问直接覆盖
【备注】 建议把ss参数放在 -i参数之前使用
截取多张图片
ffmpeg -i input.mp4 -r 1 -q:v 2 -f image2 pic-%03d.jpeg
-r 表示每一秒几帧
-q:v 表示存储jpeg的图像质量,一般2是高质量
如此,ffmpeg会把input.mp4,每隔一秒,存一张图片下来.假设有60s,那会有60张 [如果视频特别长就会截取很多图片来,所以要设置一个时间段儿]
设置开始的时间,和你想要截取的时间,每秒1帧
ffmpeg -ss 00:00:30 -t 10 -i input.mp4 -r 1 -q:v 2 -f image2 -y pic-%03d.jpeg
-t 表示共要多少时间
ffmpeg会从input.mp4的第20s时间开始,往下10s,即20~30s这10秒钟之间,每隔1s就抓一帧,总共会抓10帧
其他
每秒2帧
ffmpeg -ss 00:00:30 -t 10 -i 66666.mp4 -r 2 -q:v 2 -f image2 -y pic-%03d.jpeg
每秒23帧 持续40秒 920张
ffmpeg -ss 00:00:30 -t 40 -i 66666.mp4 -r 23 -q:v 2 -f image2 -y pic-%03d.jpeg
每秒25帧 持续2秒 【默认25帧】
ffmpeg -ss 00:00:07 -t 2 -i 66666.mp4 -r 25 -q:v 2 -f image2 -y pic-%03d.jpeg
可以设置1.5吗
每秒24帧 持续1.5秒 36张图
ffmpeg -ss 00:00:07 -t 1.500 -i 66666.mp4 -r 24 -q:v 2 -f image2 -y pic-%03d.jpeg
最终:视频9秒 6个场景 每个场景1.5秒 持续截取1.5秒 开始在7.5秒左右 每秒24帧图像 一共36张图片
ffmpeg -ss 00:00:07.500 -t 1.500 -i input.mp4 -r 24 -q:v 2 -f image2 -y pic-%03d.jpeg
下面这个不清楚-r 0.2
假如影片第10分钟到第20分钟之间,每隔5秒截一张 共计120张
ffmpeg -ss 10:00 -t 10:00 -i 66666.mp4 -r 0.2 -q:v 2 -f image2 -y pic2-%03d.jpeg
ffmpeg -ss 10:00 -i input -f image2 -r 0.2 -t 10:00 %3d.jpg
设置输出帧大小 -s 480X270 300X168
ffmpeg -ss 00:00:07.500 -t 1.500 -i input.mp4 -r 24 -q:v 2 -f image2 -y -s 480X270 pic-%03d.jpeg
提取视频
ffmpeg -i "A_File.mp4" -ss 00:00:0.0 -t 10 -an "B_File.mp4"
-an 不处理音频
【通过】提取视频–默认方式
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an B_File.mp4
【通过】提取视频–指定尺寸
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an -s 480X270 B_File.mp4
【通过】提取视频–缩放方式
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File.mp4
ps: 如果540不写,写成-1,即scale=960:-1, 那也是可以的,ffmpeg会通知缩放滤镜在输出时保持原始的宽高比。【但是必须保证一定的比率】,否则就会向下面这样报错
【不通过】 height not divisible by 2 (300×169)
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=300:-1 B_File.mp4
【通过】
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=300:168 B_File.mp4
通过设置高度168 可以解决
提取视频【实际使用】
在实际使用中我使用下面的命令提取视频
ffmpeg -i 88888.mp4 -vcodec copy -acodec copy -ss 00:00:10 -to 00:00:15 cutout1.mp4 -y
ffmpeg -i 88888.mp4 -vcodec copy -acodec copy -ss 00:00:10 -to 00:00:15 -ss 00:01:30 -to 00:01:50 cutout1.mp4 -y
ffmpeg -ss 00:46:28 -i "Morning_News.asf" -acodec copy -vcodec copy -t 00:03:25 output.asf
这行命令解释为:从文件 Morning_News.asf 第 46:28 分秒开始,截取 03: 25 的时间,其中视频和音频解码不变,输出文件名为 output.asf
这样提取出来的视频和原始视频一样的编码
视频合并
首先提前截取各个场景
480
ffmpeg -ss 00:00:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File1.mp4
ffmpeg -ss 00:06:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File2.mp4
ffmpeg -ss 00:12:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File3.mp4
ffmpeg -ss 00:18:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File4.mp4
ffmpeg -ss 00:24:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File5.mp4
ffmpeg -ss 00:30:07.500 -t 1.500 -i 66666.mp4 -y -an -vf scale=480:-1 B_File6.mp4
合并视频
ffmpeg -f concat -i files.txt -c copy -y output.mp4
files.txt格式如下
file 'B_File1.mp4'
file 'B_File2.mp4'
file 'B_File3.mp4'
file 'B_File4.mp4'
file 'B_File5.mp4'
file 'B_File6.mp4'
再看一个例子
264秒
ffmpeg -ss 00:00:07.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File1.mp4
ffmpeg -ss 00:00:51.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File2.mp4
ffmpeg -ss 00:01:35.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File3.mp4
ffmpeg -ss 00:02:19.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File4.mp4
ffmpeg -ss 00:03:03.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File5.mp4
ffmpeg -ss 00:03:47.500 -t 1.500 -i 88888.mp4 -y -an -vf scale=480:-1 B_File6.mp4
ffmpeg -f concat -i files.txt -c copy -y output2.mp4
视频转码
一个视频的编码是MPEG4,想用H264编码,咋办?
ffmpeg -i c.mp4 -vcodec h264 c_output.mp4
相反也一样
ffmpeg -i input.mp4 -vcodec mpeg4 output.mp4
当然了,如果ffmpeg当时编译时,添加了外部的x265或者X264,那也可以用外部的编码器来编码。
(不知道什么是X265,可以 Google一下,简单的说,就是她不包含在ffmpeg的源码里,是独立的一个开源代码,用于编码HEVC,ffmpeg编码时可以调用它。当然 了,ffmpeg自己也有编码器)
ffmpeg -i input.mp4 -c:v libx265 output.mp4
ffmpeg -i input.mp4 -c:v libx264 output.mp4