我有一个MPEG-4视频,mediainfo
描述为:
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
Overall bit rate : 6 772 Kbps
Writing application : Lavf54.6.100
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4.1
Format settings, CABAC : Yes
Format settings, ReFrames : 4 frames
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Bit rate : 25.0 Mbps
Frame rate mode : Constant
Frame rate : 29.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.554
Stream size : 500 MiB (98%)
Writing library : x264 core 125
Encoding settings : cabac=1 / ref=3 / deblock=1:0:0 / nalyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=abr / mbtree=1 / bitrate=25000 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00
(我删除了一些无用的信息)
我想要做的是从视频中移除第一帧,比如200帧。
但是,如果我尝试使用ffmpeg
(版本0.11.1,从源代码编译)
ffmpeg -i video.mp4 -vf select='gte(n\,200)' -vcodec copy -strict -2 out.mp4
它不起作用,帧完全相同。如果我删除了-vcodec copy
部分,那么前面的190帧都是相同的(等于第190帧);所以,他们没有被删除,而是被第190个人取代。
如果我尝试使用select
过滤器从视频中提取单张图片,请
ffmpeg -i video.mp4 -vf "select=gte(n\,200)" %d.jpg
它可以正常工作。
有人知道为什么会这样吗?
谢谢!
答案 0 :(得分:1)
您不能stream copy -vcodec copy
并同时使用视频过滤器。如果要执行过滤,则必须重新编码。
如果要流式复制前200帧:
ffmpeg -i input -frames:v 200 -codec copy output.mkv