I want to use JPEGLiveSource to receive video as shown below.
m_jpegLiveSource.LiveModeStart = true;
m_jpegLiveSource.KeyFramesOnly = false;
m_jpegLiveSource.Init();
m_jpegLiveSource.LiveContentEvent += JpegLiveSource_LiveNotificationEvent;
m_jpegLiveSource.LiveStatusEvent += JpegLiveStatus_NotificationEvent;
However, the video receive event handler is not called, the following error log is output, and the following status flag value is output from JpegLiveStatus_NotificationEvent ().
MIP: Error: JPEGLiveSource:PollThread (): The input string is malformed.
[JpegLiveStatus_NotificationEvent] StatusFlags.Motion
[pegLiveStatus_NotificationEvent] StatusFlags.Notification
[JpegLiveStatus_NotificationEvent] StatusFlags.CameraConnectionLost
[JpegLiveStatus_NotificationEvent] StatusFlags.Recording
[JpegLiveStatus_NotificationEvent] StatusFlags.LiveFeed
[JpegLiveStatus_NotificationEvent] StatusFlags.ClientLiveStopped
[JpegLiveStatus_NotificationEvent] StatusFlags.DatabaseFail
[JpegLiveStatus_NotificationEvent] StatusFlags.DiskFull
What is wrong?