Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-03-10 Thread Ross Finlayson
> On Mar 11, 2024, at 4:08 AM, dan_desjardins > wrote: > > Sorry if this appear dumb, but why not just throw everything away until you > receive an I-Frame. As I noted before, the OP could program his video input source to do this - which would give him what he wants if there is only one cl

Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-03-10 Thread dan_desjardins
. -Original Message- From: live-devel On Behalf Of ?? ?? Sent: Sunday, March 10, 2024 7:29 AM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264) I want something a little different.

Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-03-10 Thread Худаев Илья Евгеньевич
for the next packet. All other subsequent packets are sent by default -Original Message- От: "Ross Finlayson" Кому: "LIVE555 Streaming Media - development & use" Отправленные: Среда, 28 Февраль 2024 г 14:41:20 Тема: Re: [Live-devel] RTSP server on live555 star

Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-02-28 Thread Ross Finlayson
> On Feb 28, 2024, at 9:20 PM, Худаев Илья wrote: > > I connected to several real IP cameras and saw that the first packages that I > received were NAL units with SPS, PPS and I-frame. Yes, and you could easily change the implementation of your video input source (which is your code, so I ca

Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-02-28 Thread Худаев Илья
: Wednesday, February 28, 2024 12:39 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264) > How can I make the new client start receiving data from the last GOP (SPS, > PPS and I-FRAME)? You can’t do this if you

Re: [Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-02-27 Thread Ross Finlayson
> How can I make the new client start receiving data from the last GOP (SPS, > PPS and I-FRAME)? You can’t do this if you ever want to have more than one client playing/receiving the stream concurrently, otherwise your server would need to (somehow) arrange to send different data, at different

[Live-devel] RTSP server on live555 start send client on I-Frame (h264)

2024-02-27 Thread Худаев Илья
I wrote a simple RTSP server with a dummy realtime source. I used the ffmpeg library as a source for the encoder and wrote a class that encodes something all the time. I took most of the code from here