如何在传输流中找到关键帧?
我编写了一个程序来解析传输流。但我需要知道传输流数据包是否包含 i 帧。最好的方法是什么?我听说我需要查看图片起始代码后的几个位,但我不知道在 TS 数据包中的哪里可以找到它。
I wrote a program that will parse a transport stream. But I need to know if a transport stream packet contains an i-frame. What is the best way to do this? I heard somewhere that I need to look at a couple of bits after the picture start code but I don't know where to find this in the TS packet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://dvd.sourceforge.net/dvdinfo/mpeghdrs.html
这是一个简短的内容标题概述。在图片标题中,您将找到框架类型。
http://www.pjdaniel.org.uk/mpeg/
这是一个很好的工具一次检查一个数据包,它会显示一些标头代码。
http://dvd.sourceforge.net/dvdinfo/mpeghdrs.html
This is a brief overview of the headers. In the picture header you'll find the frame type.
http://www.pjdaniel.org.uk/mpeg/
This is a nice tool to inspect one packet at a time and it displays some header codes.