我使用ffmpeg
的{{3}}过滤器扫描输入视频以提取某些帧。选择是基于复杂的creteria并且无法预测提取的帧的数量(我正在进行场景检测,但这可能是不同的 - 例如选择所有 I 帧等) 。
我需要的是显示扫描(解码)视频的百分比(例如10%或90%)。
我尝试了几种方法来解析控制台输出,正如人们在处理编码时通常所做的那样,但它对扫描的进度没有帮助(例如select或Can ffmpeg show a progress bar?)
ffmpeg -progress sceneProgr.txt -i input.wmv -vsync passthrough -an -vf select='gt(scene\,0.2)',showinfo scene%%05d.png
它产生的输出如下:
<..>
frame= 0 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A
n:0 pts:16550 pts_time:16.55 pos:4205325 fmt:rgb24 sar:0/1 s:640x480 i:P iskey:1 type:I checksum:95895BC9 plane_checksum:[95895BC9]
frame= 1 fps=0.7 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A
n:1 pts:24591 pts_time:24.591 pos:6685325 fmt:rgb24 sar:0/1 s:640x480 i:P iskey:0 type:P checksum:FF4CC015 plane_checksum:[FF4CC015]
'frame=...' and 'n:...' lines are repeated for each of the extracted frames.
frame=...
和n:...
行都是指输出中的数字,因此不能用于计算进度的方式通常这样做(因为我无法预测在前面会发现多少帧,此外,它们并不是均匀地分布在输入视频中。)
如果我指定-progress progress.txt
参数, progress.txt 文件如下:
frame=5
fps=1.2
stream_0_0_q=0.0
total_size=N/A
out_time_ms=43209833
out_time=00:00:43.209833
dup_frames=0
drop_frames=0
progress=continue
frame=6
fps=1.3
stream_0_0_q=0.0
total_size=N/A
out_time_ms=52252200
out_time=00:00:52.252200
dup_frames=0
drop_frames=0
progress=continue
frame=6
fps=1.2
stream_0_0_q=0.0
total_size=N/A
out_time_ms=52252200
out_time=00:00:52.252200
dup_frames=0
drop_frames=0
progress=continue
新部分大约每秒写入一次,并将引用到最后一个提取的框架。
这有点帮助,因为out_time
指的是输入视频中最后提取的帧的位置,因此我可以从中计算扫描的进度
progress = out_time_ms/total_input_time
但这是不理想,因为仅当提取符合select
条件的新框架时才会更新。所以,如果我有大部分视频没有匹配的帧,那么进度不会在很长一段时间内发生变化。
包装式:
我正在寻找一种在使用ffmpeg Progress Bar - Encoding Percentage in PHP过滤器时计算视频扫描进度的方法。
非常感谢任何想法。
答案 0 :(得分:0)
你在每一帧都得到的东西,比如来自ffprobe的数据......
[FRAME]
media_type=video
key_frame=1
pkt_pts=0
pkt_pts_time=0.000000
pkt_dts=0
pkt_dts_time=0.000000
pkt_duration=1
pkt_duration_time=0.040000
pkt_pos=44
width=800
height=542
pix_fmt=yuv420p
sample_aspect_ratio=1:1
pict_type=I
coded_picture_number=0
display_picture_number=0
interlaced_frame=0
top_field_first=0
repeat_pict=0
reference=3
[/FRAME]
你在BEGIN得到什么
I/stderr ( 7434): Input #0, image2, from '/storage/sdcard0/Pictures/me374658335.jpg':
I/stderr ( 7434): Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
I/stderr ( 7434): Stream #0:0: Video: mjpeg, yuvj420p, 1296x972 [SAR 1:1 DAR 4:3], 25 fps, 25 tbr, 25 tbn, 25 tbc
I/stderr ( 7434): Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/sdcard0/PictureComment/1347139284144.3gp':
I/stderr ( 7434): Metadata:
I/stderr ( 7434): major_brand : 3gp4
I/stderr ( 7434): minor_version : 0
I/stderr ( 7434): compatible_brands: isom3gp4
I/stderr ( 7434): creation_time : 2012-09-08 21:21:41
I/stderr ( 7434): Duration: 00:00:17.22, start: 0.000000, bitrate: 67 kb/s
I/stderr ( 7434): Stream #1:0(eng): Audio: aac (mp4a / 0x6134706D), 44100 Hz, mono, s16, 64 kb/s
I/stderr ( 7434): Metadata:
I/stderr ( 7434): creation_time : 2012-09-08 21:21:41
I/stderr ( 7434): handler_name : SoundHandle
I/stderr ( 7434): [libx264 @ 0x5a070910] using SAR=1/1
I/stderr ( 7434): [libx264 @ 0x5a070910] using cpu capabilities: ARMv6 NEON
I/stderr ( 7434): [libx264 @ 0x5a070910] profile High, level 3.2
你可以使用帧时间戳和持续时间来计算完成百分比吗?