如何在 MPEG-2 流中查找关键帧(打包在 MPEG-TS 中)
我写了 MPEG-TS 解复用器。它将传输流解包为 PES 数据包。 现在我想删除所有帧直到遇到关键帧。
我该怎么做呢?我应该在每个 PES 帧中查找 Sequence 块吗?
I've written MPEG-TS demuxer. It unpacks transport stream to PES packets.
Now I want to drop all frames till I meet keyframe.
How can I do it? Should I find for Sequence block in each PES frame?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够在 MPEG-TS 适配字段。如果您正在处理不使用 RAI 位,您需要依赖包含的基本流中的信息。例如,如果您正在处理 H.264 流,则需要查找 IDR 切片NAL 单位(类型 5)。
You should be able to look for a set Random Access Indicator bit in the MPEG-TS adaptation field. If you are dealing with a transport stream that does not use RAI bits, you'll need to rely on information in the contained elementary stream. For example, if you are processing an H.264 stream, you'll need to look for IDR slice NAL units (type 5).