Results 1 to 3 of 3
- 11-28-2012, 11:58 PM
#1
I want my application to play (.m3u8) Live Streaming , i found this example IIS Smooth Streaming Client 1.1 RTW - Silverlight 4 Code Samples - Release: Smooth Streaming Client 1.1 RTW - Code Samples
It works with other links but if i try my .m3u8 link it does not work. Is there a specific way to play that type of streaming in 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);
} - 12-03-2012, 10:23 AM #2
This is kind of off topic, but windows phone doesn't natively support m3u8's. m3u8 is the apple adaptive live format. Smooth stream uses its' own format, .ism or .isml files that are similar (in concept) to the way m3u8's work, but actually totally different. So, as far as I know, there is no way to play an m3u8 on a windows phone. I don't have the time to go through all the samples to see what exactly you are referring to. I do know Microsoft has a tool that let's you take a smooth stream video, and play it on an iOS device, it basically translates the smooth stream to m3u8 on the fly, but doesn't go the other direction.
- 01-05-2013, 12:45 AM #3
I don't know if this will help you, but...
Our church does a live smoothstreaming broadcast.
We use .m3u3 for iOS / Android and Silverlight for desktops and Windows Phone.
I use BitGravity Player for my Windows Phone using this address...
http://iissmooth.webcastcenter.com/m....isml/manifest
It's the same address that Silverlight uses for desktops.
My .m3u3 address is...
http://mlmidev.webcastcenter.com/mlm...3u8-aapl).m3u8
JJ
Similar Threads
-
Has Microsoft lost faith in Windows Phone?
By DontHate707 in forum Windows Phone 7Replies: 115Last Post: 12-28-2011, 10:32 AM -
No Voicemail Indicator in Windows Phone Mango
By davold in forum Windows Phone 7Replies: 12Last Post: 12-25-2011, 11:07 AM -
Introduction and question regarding Voice-to-Text in Windows Phone.
By Bearach in forum Windows Phone 7Replies: 6Last Post: 10-04-2011, 06:15 PM -
X509Certificate 2 in Windows Phone Mobile
By DonDi1989 in forum Software Development and HackingReplies: 1Last Post: 09-20-2011, 11:31 AM -
Tasks in Windows Phone 7
By dave3211 in forum Windows Phone 7Replies: 6Last Post: 11-08-2010, 04:38 PM
LinkBack URL
About LinkBacks
































Latest Comments