Giter Club home page Giter Club logo

Comments (2)

xia-chu avatar xia-chu commented on May 17, 2024

ZLMediaKit处理Rtmp推流的对象是RtmpSession类,该对象具体处理推流音视频rtmp数据的代码如下:

image

上图中_pPublisherSrc变量其实是RtmpToRtspMediaSource类型,我们现在看看RtmpToRtspMediaSource对象的onWrite方法:
image
从上图中我们看到了_rtmpDemuxer变量,该变量是RtmpDemuxer对象,用于解析rtmp包并解复用为H264和AAC。
RtmpToRtspMediaSource派生于RtmpMediaSource对象,除了基类的功能,它还实现了rtmp转rtsp/hls、mp4录制的功能。实现这些功能前都要先解复用成H264和AAC才能实现。所以你可以在RtmpToRtspMediaSource对象中提取到你想要的帧数据,也能知道此处对应的推流来自哪里。

RtmpDemuxer对象是你实现你想要功能的关键,通过RtmpDemuxer::getTracks方法你能获取到音视频的Track对象,Track对象可以提取出譬如sps、pps等信息,也能获取到音视频流。

你可以通过这种方式来截取帧数据并处理:

image

from zlmediakit.

SuperPowerLF2 avatar SuperPowerLF2 commented on May 17, 2024

十分感谢!

from zlmediakit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.