Hi,
I have a mobile server installed on a separate machine, and using the SDK to request a stream
var videoParams = new VideoParams()
{
CameraId = itemId,
DestWidth = 704,
DestHeight = 576,
CompressionLvl = 73,
FPS = 20,
MethodType = StreamParamsHelper.MethodType.Push,
SignalType = StreamParamsHelper.SignalType.Playback,
StreamType = StreamParamsHelper.StreamType.Transcoded,
StreamDataType = StreamParamsHelper.StreamDataType.Video,
CloseOldControllers = true,
CloseConnectionOnError = true,
KeyFramesOnly = false,
};
the stream is far from running smoothly and stops after a couple of minutes.
The weird part is as soon as I use the failover recorder ( hot standby) it works fine!
I tested the sample on our testsystem, where all is installed on the same machine, and it works fine. I tested the bandwidth , and plenty is available, also I played around with the adaptive streaming in the mobile server settings. nothing seems to change. same for lower fps or quality.
