Receiving the Axis H.264 video data in multiple packets(fragments). Is there any way to get each image frame in single packet? #735
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
This automatically generated reply acts as a friendly reminder. Answers to your questions will most often come from the community, from developers like yourself. You will, from time to time, find that Axis employees answers some of the questions, but this is not a guarantee. Think of the discussion forum as a complement to other support channels, not a replacement to any of them. If your question remains unanswered for a period of time, please revisit it to see whether it can be improved by following the guidelines listed in Axis support guidelines. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
MTU max can only be 1500, but if you want to get one frame at the same time, if you are using windows, you can use Axis media parser SDK, there is a callback CAxisMediaParserEvents::OnVideoSample, it will return the whole frame. https://www.axis.com/developer-community/axis-media-parser-sdk |
Beta Was this translation helpful? Give feedback.
thats normal becuase of MTU, lets imaging a frame has 200kbit that would never fit into one tcp package when using a MTU of 1500bytes. MTU could be configured.
but as you can see 1500 is max. so it would be always fragmented