如何减少实时平滑流式会议解决方案中的延迟?

我正在使用Expression Encoder SDK对我的网络摄像头进行实时录制,将其发布到支持IIS 7.5和Media Services 4的Web服务器,并使用SmoothStreamingClient进行查看。 但是,由于我的目标是实时会议解决方案,我需要大幅减少本地预览和远程播放之间的20秒延迟。 我在某些地方读过可以配置实时平滑流以获得2秒延迟,但是,我还没有找到任何教程解释如何配置这样的解决方案,包括编码,提供和消费双方。 这是我用来编码捕获的视频的代码:
// Aquires audio and video devices
EncoderDevice video = EncoderDevices.FindDevices(EncoderDeviceType.Video).Count > 0 ? EncoderDevices.FindDevices(EncoderDeviceType.Video)[0] : null;
EncoderDevice audio = EncoderDevices.FindDevices(EncoderDeviceType.Audio).Count > 0 ? EncoderDevices.FindDevices(EncoderDeviceType.Audio)[0] : null;

// Create a new device source. We use the first audio and video devices on the system
job = new LiveJob();
LiveDeviceSource deviceSource = job.AddDeviceSource(video, audio);

// sets preview window to winform panel hosted by xaml window
deviceSource.PreviewWindow = new PreviewWindow(new HandleRef(prevWindow, prevWindow.GetHandle));

// Make this source the active one
job.ActivateSource(deviceSource);

job.ApplyPreset(LivePresets.VC1IISSmoothStreamingLowBandwidthStandard);

PushBroadcastPublishFormat format = new PushBroadcastPublishFormat();
format.PublishingPoint = new Uri(path);

// Adds the publishing format to the job
job.PublishFormats.Add(format);

job.StartEncoding();
我可以添加一些能够产生更低延迟的代码吗?如果没有,我在哪里可以配置Smooth Streaming应该提供的所谓“低延迟支持”? 提前致谢!     
已邀请:
我相信IIS仅支持移动流的段大小更改。但是,如果您降低这些段大小然后以某种方式模仿移动设备,我确信延迟会下降。 您还可以尝试在“实时流畅的蒸汽发布点”部分的高级选项卡中降低分段前瞻。 总而言之,IIS看起来不支持此功能。我的建议是寻找另一种会议解决方案,因为在当前状态下,HTTP流不会少于~2秒的延迟。     

要回复问题请先登录注册