steamer example for which directly read data from RTP server #1306
Unanswered
manthanrtilva
asked this question in
Q&A
Replies: 1 comment
-
If your stream is already packetized as RTP, you must not proceed like the streamer example but like the media-sender one. Creating a new track to send audio is the correct way. If audio is not playing it means there is a mistake somewhere. You should check the track description information matches the audio RTP flow (Codec, payload type, SSRC, etc), and look at |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my application, I need to read audio/video data from from RTP server and send it to browser.
Using media-sender I am able to send video data to browser.
I tried to add new track to peerconnection and send data from rtp socket to newly created track, but browser don't playing sound.
Then I checked streamer example, which is playing audio and video, but I am looking for a way to create new
StreamSource
which read from RTP server and rest can be handle by existing stream example.Any hint how to do this?
Beta Was this translation helpful? Give feedback.
All reactions