0

アプリケーションで(.m3u8) Live Streaming を再生したいのですが、この例を見つけましたhttp://archive.msdn.microsoft.com/SmoothStreaming/Release/ProjectReleases.aspx?ReleaseId=3867

他のリンクでも機能しますが、.m3u8 リンクを試しても機能しません。Windows Phone でそのタイプのストリーミングを再生する特定の方法はありますか?

     public MainPage()
{

        InitializeComponent();
        SupportedOrientations = SupportedPageOrientation.Landscape;
        Loaded += new RoutedEventHandler(MainPage_Loaded);
        phoneApplicationPage.ManipulationStarted += new EventHandler<ManipulationStartedEventArgs>(phoneApplicationPage_ManipulationStarted);
        phoneApplicationPage.ManipulationCompleted += new EventHandler<ManipulationCompletedEventArgs>(phoneApplicationPage_ManipulationCompleted);
        seekbar.MouseLeftButtonUp += new MouseButtonEventHandler(seekbar_MouseLeftButtonUp);

        List<Content> Contents = new List<Content>();
        Contents.Add(new Content("Media One", new Uri("http://fl1.viastreaming.net/iqraatv2/livestream/playlist.m3u8")));
        Contents.Add(new Content("Media Two", new Uri("http://Media_Two.ism/manifest")));
    Contents.Add(new Content("Media Three", new Uri("http://Media_Three.ism/manifest")));
        Contents.Add(new Content("Media Four", new Uri("http://Media_Four.ism/manifest")));

        comboBoxUrls.ItemsSource = Contents;
        comboBoxUrls.SelectedIndex = 0;
        comboBoxUrls.SelectionChanged += new SelectionChangedEventHandler(comboBoxUrls_SelectionChanged);
   }
4

2 に答える 2

0

Windows Phone 7 と Windows Phone 8 の両方で HLS (m3u8) を使用している CodePlex からこのプロジェクトを確認することができます。

Windows Phone ストリーミング メディア

于 2013-04-11T22:05:54.850 に答える