Hello,
Smooth Streaming is available through the SDK to all developers with firmware 4.7. To tell the media player you are passing in a Smooth Stream manifest URL, set the
"StreamFormat" paramter to "ism".
videoClip = CreateObject("roAssociativeArray")
videoClip.StreamBitrates = [0] 'adaptive
videoClip.StreamUrls = ["http://playready.directtaps.net/smoothstreaming/SSWSS720H264/SuperSpeedway_720.ism/Manifest"]
videoClip.StreamQualities = ["SD"] 'adaptive, so make sure it plays on both SD and HD
videoClip.StreamFormat = "ism" 'indicates Microsoft Smooth Stream
videoClip.title = "Title to appear during buffering and in HUD"
videoScreen.SetContent(videoClip)
videoScreen.show()
We are working on documentation updates that should be published in the next week or two.
Cheers.