<div dir="ltr">Hi Ross,<div><br></div><div>Thank you for your advice. It worked.<br><br>I was unable to change the camera settings. I needed to increase the maxSize value. As it is a point to point communication, it worked perfectly.</div><div><br></div><div>Best regards,</div><div><br></div><div>Flavio</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, 14 Jun 2023 at 18:03, Ross Finlayson <<a href="mailto:finlayson@live555.com">finlayson@live555.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
> On Jun 14, 2023, at 12:50 PM, Flavio Alves <<a href="mailto:flavio.alves@vitalintelligencedata.com" target="_blank">flavio.alves@vitalintelligencedata.com</a>> wrote:<br>
> <br>
> Is there any setting on the IP camera or on the application the I can execute/change to avoid this behavior?<br>
<br>
The problem here is that your IP camera is generating extremely large ‘I frames’ (also called ‘key frames’). Extremely large I frames are bad for streaming over RTP, because each I frame gets packed into a very large number of RTP packets, and the loss of even one of these RTP packets will make the whole frame un-decodable and un-displayable.<br>
<br>
Instead, you should reconfigure your IP camera to encode your key frames as a series of ’slice’ NAL units, rather than as a single I frame NAL unit. That way, the latency of your displayed video will improve, and the loss of a RTP packet will not cause you to lose the whole key frame.<br>
<br>
Alternatively, you *could* increase the value of "OutPacketBuffer::maxSize” in “live555ProxyServer.cpp”, but I don’t recommend this, because it will make the key frame problem even worse. Unless your network is *very* reliable, you’ll lose a lot of your video.<br>
<br>
<br>
Ross Finlayson<br>
Live Networks, Inc.<br>
<a href="http://www.live555.com/" rel="noreferrer" target="_blank">http://www.live555.com/</a><br>
<br>
<br>
_______________________________________________<br>
live-devel mailing list<br>
<a href="mailto:live-devel@lists.live555.com" target="_blank">live-devel@lists.live555.com</a><br>
<a href="http://lists.live555.com/mailman/listinfo/live-devel" rel="noreferrer" target="_blank">http://lists.live555.com/mailman/listinfo/live-devel</a><br>
</blockquote></div>