Replies: 2 comments
-
I am pretty mutch a beginer so take this with a grane of salt: when you create a webrtc stream they share a RTC session decription. this is a bunch of text and inside it their is information of in what format the video should be sent in. her is how i view it:
In my case i have a VP8 somewhere in the text. Finaly maybe you can use wireshark |
Beta Was this translation helpful? Give feedback.
-
if you send h264 es-stream using webrtc, make sure you send it in annex-b format, which means you will need 0001 as the startcode, including sps/pps before every IDR frame and so on for the latter nal packet |
Beta Was this translation helpful? Give feedback.
-
I'm reading in a raw h264 stream from a camera, since the stream is already h264 encoded I am passing it along directly to the H264Reader and sending over a TrackLocalStaticSample track. However, the client on the opposite side is just rendering a black screen. Any tips in debugging if the stream is in the correct format?
Beta Was this translation helpful? Give feedback.
All reactions