识别并修改H264 I,P,B帧

时间:2012-08-06 19:51:05

标签: frame h.264

我使用VLC通过UDP over LAN在MPEG TS容器中传输H264视频文件。我使用Wireshark在客户端捕获数据包,在这里你可以找到pcap文件:http://www.sendspace.com/file/w0sf36

我是否需要使用MPEG PES来识别I,P或B帧?如果是这样,我该怎么做?以下是一个MPEG PES数据包的数据:http://pastebin.com/NayLBx5w。它以字节0x00 0x00 0x00 0x01开头。我应该使用哪些字节来达到目标​​?

在pcap文件中,您可以看到MPEG PES数据包仅占所有流的2%,而其他数据包仅为简单UDP。使用MPEG PES数据包是否足够?在这种情况下UDP数据包携带什么信息?

编辑:这是我使用ffprobe在Windows中获得的典型输出。

[PACKET]
codec_type=audio
stream_index=1
pts=54010800
pts_time=600.120000
dts=54010800
dts_time=600.120000
duration=2160
duration_time=0.024000
convergence_duration=N/A
convergence_duration_time=N/A
size=96
pos=1460384
flags=K
[/PACKET]
[PACKET]
codec_type=video
stream_index=0
pts=54012012
pts_time=600.133467
dts=54006006
dts_time=600.066733
duration=3003
duration_time=0.033367
convergence_duration=N/A
convergence_duration_time=N/A
size=207953
pos=1098672
flags=_
[/PACKET]
[PACKET]
codec_type=video
stream_index=0
pts=54009009
pts_time=600.100100
dts=54009009
dts_time=600.100100
duration=3003
duration_time=0.033367
convergence_duration=N/A
convergence_duration_time=N/A
size=145530
pos=1311676
flags=_
[/PACKET]
[PACKET]
codec_type=audio
stream_index=1
pts=54012960
pts_time=600.144000
dts=54012960
dts_time=600.144000
duration=2160
duration_time=0.024000
convergence_duration=N/A
convergence_duration_time=N/A
size=96
pos=1507948
flags=K
[/PACKET]
[PACKET]
codec_type=video
stream_index=0
pts=54018018
pts_time=600.200200
dts=54012012
dts_time=600.133467
duration=3003
duration_time=0.033367
convergence_duration=N/A
convergence_duration_time=N/A
size=46173
pos=1460572
flags=_
[/PACKET]

1 个答案:

答案 0 :(得分:1)

只要您以文件形式使用

的内容
 ffprobe -show_packets <your_file>

获取流中每个数据包的详细信息。它可以是任何有效的视频文件。

以下是我所拥有文件的不完整输出。

[FRAME]
media_type=video
key_frame=0
pkt_pts=2
pkt_pts_time=0.100000
pkt_dts=2
pkt_dts_time=0.100000
pkt_duration=1
pkt_duration_time=0.050000
pkt_pos=301347
width=320
height=240
pix_fmt=yuv420p
sample_aspect_ratio=N/A
pict_type=P
coded_picture_number=2
display_picture_number=0
interlaced_frame=0
top_field_first=0
repeat_pict=0
reference=0
[/FRAME]
[FRAME]
media_type=audio
key_frame=1
pkt_pts=0
pkt_pts_time=0.000000
pkt_dts=0
pkt_dts_time=0.000000
pkt_duration=1024
pkt_duration_time=0.021333
pkt_pos=306587
sample_fmt=s16
nb_samples=1024
[/FRAME]

您可以编写一个非常简单的perl脚本或类似内容来告诉您每个帧的确切详细信息。