Re: [Live-devel] Receiving slice-based frames

2025-03-05 Thread d.gorde...@ngslab.ru
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

[Live-devel] Receiving slice-based frames

2025-02-21 Thread d.gorde...@ngslab.ru
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

Re: [Live-devel] Streaming G711 audio

2024-11-16 Thread d.gorde...@ngslab.ru
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", &

[Live-devel] Streaming G711 audio

2024-11-14 Thread d.gorde...@ngslab.ru
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