5

我有一个使用 Microsoft.expression.encoder 和 framework 4.0 广播视频的 WPF 应用程序,但是在广播时我有 15 秒的延迟。有什么建议可以减少广播时的延迟。

下面是代码

using Microsoft.Expression.Encoder.Live; 
using Microsoft.Expression.Encoder;

private void button1_Click(object sender, RoutedEventArgs e)
{ 
    try 
    { 
        EncoderDevice video = null; 
        EncoderDevice audio = null;
        GetSelectedVideoAndAudioDevices(out video, out audio);
        StopJob();

        if (video == null)
        {
            return;
        }

        StopJob();
        _job = new LiveJob();

        if (video != null && audio != null)
        {
            //StopJob();
            _deviceSource = null;
            _deviceSource = _job.AddDeviceSource(video, audio);
            _job.ActivateSource(_deviceSource);

            // Finds and applys a smooth streaming preset        
            //_job.ApplyPreset(LivePresets.VC1HighSpeedBroadband4x3);

            // Creates the publishing format for the job
            PullBroadcastPublishFormat format = new PullBroadcastPublishFormat();
            format.BroadcastPort = 9090;
            format.MaximumNumberOfConnections = 50;

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

            // Starts encoding
            _job.StartEncoding();
        }
        //webCamCtrl.StartCapture();
    }
    catch (Exception ex)
    {
        WriteLogFile(this.GetType().Name, "button1_Click", ex.Message.ToString());
    }

}

我正在使用 MediaElement 在我的服务器和客户端系统上显示网络摄像头。

在客户端

 try
            {

                theMainWindow.getServerIPAddress();
                IP = theMainWindow.machineIP;
                MediaElement1.Source = new Uri("http://" + IP + ":9090/");
            }
            catch (Exception ex)
            {
            }
4

2 回答 2

2

不幸的是,没有解决方案(至少截至 2011 年 1 月)。据微软称:

“我们在编码过程中添加了几秒钟的延迟,然后在服务器级别进行缓存,可以再增加 5-20 秒,最后 Silverlight 还会缓存几秒钟的延迟。”

http://social.expression.microsoft.com/Forums/is/encoder/thread/898b2659-c0d5-4c84-8fba-225f58806f5d

于 2012-11-06T22:21:24.293 回答
0

PreviewWindow您可以通过使用 a而不是 a来消除客户端中的一些延迟,从而MediaElement绕过在客户端中显示流之前对其进行编码的需要。PreviewWindow是一个 WinForms 控件,所以这只适用于 WPF。

在 XAML 中:

<WindowsFormsHost>
    <wf:Panel x:Name="PreviewPanel" />
</WindowsFormsHost>

后面的代码:

var previewWindow = new PreviewWindow(new HandleRef(this.PreviewPanel, this.PreviewPanel.Handle));
_deviceSource.PreviewWindow = previewWindow;
// ..
_job.ActivateSource(_deviceSource);
于 2013-06-07T18:03:22.557 回答