It works, thanks a lot!
On Feb 22, 2025, at 1:10 AM, d.gorde...@ngslab.ru wrote:
Hello
I need to receive slice-based frames from a video server. These frames, as you
know come by slices. The last slice (packet) comes with Mark=True in the RTP
header.
I have a class which receives the
Hello
I need to receive slice-based frames from a video server. These frames,
as you know come by slices. The last slice (packet) comes with Mark=True
in the RTP header.
I have a class which receives the frames:
class VideoSink final : public MediaSink {}
It has afterGettingFrame() method
It works! Thanks a lot!
On Nov 15, 2024, at 2:53 AM, d.gorde...@ngslab.ru wrote:
Hi,
Now I have a streamer that streams video with AAC audio:
audio_sink_ = MPEG4GenericRTPSink::createNew(*env_,
audio_rtp_socket_.get(), payload,
16000, "audio", "AAC-hbr", &
Hi,
Now I have a streamer that streams video with AAC audio:
audio_sink_ = MPEG4GenericRTPSink::createNew(*env_,
audio_rtp_socket_.get(), payload,
16000, "audio", "AAC-hbr", "", 1);
and it works well.
I need also stream G711U or G711A audio. How to make it? I see there are
some cl