4

我有一个使用 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

1 回答 1

0

您可以适当地使用 IIS Smooth Streaming 以较低的比特率材料开始播放,并随着您的客户端缓冲区填满逐渐增加它。Silverlight 具有对平滑流的内置支持,并且可以在 WPF 中手动实现(至少在理论上)。

有什么特别的事情阻止您在客户端使用 SL 吗?

于 2014-03-03T14:00:01.493 回答