Kevin, could you please clarify me on this:
Where do I add the
encodingtype and
encodingKey properties?
like this:
player = CreateObject("roVideoPlayer")
player.SetContentList([{
Stream: {
url: "http://play.ready/url.ism/Manifest"
},
StreamFormat: "ism"
SwitchingStrategy: "full-adaptation",
encodingtype: "PlayReadyLicenseAcquisitionAndChallenge",
encodingKey: "https://www.licenseaquistionurl.asmx" + "%%%" + "YourCustomDataHere"
}])
or like this:
player = CreateObject("roVideoPlayer")
player.SetContentList([{
Stream: {
url: "http://play.ready/url.ism/Manifest",
encodingtype: "PlayReadyLicenseAcquisitionAndChallenge",
encodingKey: "https://www.licenseaquistionurl.asmx" + "%%%" + "YourCustomDataHere"
},
StreamFormat: "ism"
SwitchingStrategy: "full-adaptation"
}])
or is it some other way? I can't find it in the rokudev documentation..
Also, If I just want to use
encodingKey= "https://www.licenseaquistionurl.asmx" without custom data, is it possible to implement? does the
encodingtype property still maintain as "PlayReadyLicenseAcquisitionAndChallenge"?
Thank you for your attention.
Márcio.