You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am able to get Video but Audio is missing from the output stream. This is a known issue it seems, from @claincly comment for one of my question. Reference
I have gone through ExoPlayer docs, mentioned like here by adding Ffmpeg extension we can achieve this.
Now my question is, shall we play audio by adding Ffmpeg Extension with the existing ExoPlayer v2.15.0?
Thanks in advance!!!
The text was updated successfully, but these errors were encountered:
In RTSP/RTP, a bitstream is split into UDP-packet sized chunks, and sent through the network in RTP packets. The chunks are usually smaller than 1500 bytes.
You can only use ffmpeg to render the reconstructed bitstream. In ExoPlayer the RtpPayloadReaders demux the incoming RTP packet and reconstructing the bitstream. So what's missing is an RtpPayloadReader that handles PCMA RTP packets, using ffmpeg will not help.
The only way around this: implement RFC3551 as RtpPcmaReader. We don't have it planned at the moment. In the meantime, you may find this implementation helpful.
Hi Team, i am using ExoPlayer 2.15.0 version to stream RTSP using ip camera. My Ip camera is having below configurations
Video: a=rtpmap:96 H264/90000
Audio: a=rtpmap:8 PCMA/8000/1
I am able to get Video but Audio is missing from the output stream. This is a known issue it seems, from @claincly comment for one of my question. Reference
I have gone through ExoPlayer docs, mentioned like here by adding Ffmpeg extension we can achieve this.
Now my question is, shall we play audio by adding Ffmpeg Extension with the existing ExoPlayer v2.15.0?
Thanks in advance!!!
The text was updated successfully, but these errors were encountered: