1

trying to launch a video streaming request with smooth Streaming i tried this example with their url and also my uri " but it didn't work , i tried it on vlc also it worked with an iphone application .. ! this is a part of my xaml code :

<Core:SMFPlayer>
                <Core:SMFPlayer.Playlist>
                    <Media:PlaylistItem   DeliveryMethod="AdaptiveStreaming" MediaSource="http://streaming.toutech.net:1936/live/jawharafm.sdp/playlist.m3u8"/>
                </Core:SMFPlayer.Playlist>
            </Core:SMFPlayer>
punter
  • 460
  • 1
  • 6
  • 22

1 Answers1

1

SMFPlayer does not support HLS streaming. For WindowsPhone you may want to use SmoothStreaming

Also, there was a project on codeplex that could play HLS streaming on a WindowsPhone, however it is not online anymore. I only found the tweet that referenced this project: https://twitter.com/JustinAngel/status/179253691549888514


Update

The HLS streaming for WindowsPhone is back online: http://phonesm.codeplex.com/

Mike
  • 549
  • 4
  • 21