wpf视频广播应用

时间:2012-06-18 05:45:29

标签: c# wpf mediaelement expression-encoder broadcasting

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

1 个答案:

答案 0 :(得分:0)

您可以使用IIS Smooth Streaming以较低的比特率材料开始播放,并在客户端缓冲区填满时逐渐增加它。 Silverlight内置了对Smooth Streaming的支持,同样可以在WPF中实现(至少在理论上)。

是否有任何特殊的事情阻止您在客户端使用SL?