zoukankan      html  css  js  c++  java
  • Win8 Style App 播放Smooth Streaming

    不知道Smooth Streaming是啥参见以前随笔:http://www.cnblogs.com/sun8134/archive/2012/05/14/2499296.html

    这里主要说下怎么在win8 Style App里播放Smooth Streaming

    首先需要两个东东:

    Player Framework for Windows 8: http://playerframework.codeplex.com/releases

    Smooth Streaming Client SDK : http://visualstudiogallery.msdn.microsoft.com/04423d13-3b3e-4741-a01c-1ae29e84fea6?SRC=Home

    然后我们新建个工程:

    image

    添加引用:

    image

    在页面xaml头部添加:

        xmlns:adaptive="using:Microsoft.PlayerFramework.Adaptive"
        xmlns:mmppf="using:Microsoft.PlayerFramework"

    然后在xaml里添加:

            <mmppf:MediaPlayer Source="http://mediadl.microsoft.com/mediadl/iisnet/smoothmedia/Experience/BigBuckBunny_720p.ism/Manifest">
                <mmppf:MediaPlayer.Plugins>
                    <adaptive:AdaptivePlugin />
                </mmppf:MediaPlayer.Plugins>
            </mmppf:MediaPlayer>

    然后注意下修改调试设置,由于使用了Microsoft Visual C++ Runtime Package,设置Any CPU是会报错的额

    需要根据你自己的机器设置(我用的X64)

    image

    image

    到这里基本操作完成,运行看看效果:

    image

    image

    当然如果想在codebehind里控制播放:

            private void Page_Loaded(object sender, RoutedEventArgs e)
            {
                MediaPlayer player = new MediaPlayer();
                Grid1.Children.Add(player);
                player.Source = new Uri("http://127.0.0.1/Tom.Clancys.Ghost.Recon.Alpha.2012.ism/manifest");
                var adaptivePlugin = new Microsoft.PlayerFramework.Adaptive.AdaptivePlugin();
                player.Plugins.Add(adaptivePlugin);
                player.Play();            
            }

    更多内容可以看文档:http://playerframework.codeplex.com/documentation

  • 相关阅读:
    小程序开发记录一:开发流程
    js小功能3:一个简单的计算器功能
    js小功能2:切换
    js小功能1:全选全不选
    通过javascript得到当前的日期和计算出该班级的平均分
    CSS 使用calc()获取当前可视屏幕高度
    javaScript基础题
    Python标准库03 路径与文件 (os.path包, glob包)
    Python标准库02 时间与日期 (time, datetime包)
    Python标准库01 正则表达式 (re包)
  • 原文地址:https://www.cnblogs.com/sun8134/p/2778927.html
Copyright © 2011-2022 走看看