OnStreamInfo event is not triggered for AxisMediaControl #596
-
I'm developing a .NET Forms application using an I suppose that the Thanks in advance for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
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.
-
Hi @philipp-student , |
Beta Was this translation helpful? Give feedback.
I figured it out. The problem lies within the type of the configured stream. The event is not triggered when configuring an MJPEG stream. However, if I specify an H264 stream, the event will be triggered.
For clarification: If I configure the MediaURL as
http://<ip-address>/axis-cgi/mjpg/video.cgi?camera=quad
, the event will not be triggered. However, if I change it toaxrtsphttp://<ip-address>/axis-media/media.amp?videocodec=h264&camera=quad
, it works and the event will be triggered.I don't really know about the exact specifications of the H264 codec but I would assume that it includes a frame timestamp while a simple MJPEG stream does not include one.
Purely out of interest, what type …