We are facing blocker while playing aes encrypted content in ios devices. We have already referred below links -
Azure Media Player does not work with AES protection on iPhone
https://github.com/AzureMediaServicesSamples/HLSSafariProxy
Issue is that i am unable to call the proxy server (as explained in above links) from azure media player. Below is the code to call proxy server from player -
<video id="vid1" class="azuremediaplayer amp-default-skin" autoplay="" controls="" width="640" height="400" data-setup="{"techOrder": ["azureHtml5JS", "flashSS","html5FairPlayHLS","silverlightSS", "html5"], "nativeControlsForTouch": false}">
<source src="XXXX-XXXXX" type="application/vnd.ms-sstr+xml" data-setup="{"protectionInfo": [{"type": "AES", "authenticationToken": "Bearer XXXXX"}],"streamingFormats":["SMOOTH","DASH","HLS"]}"/>
<source src="http://localhost:5002/api/AzureMediaServicesManifestProxy/TopLevel?playbackUrl=XXXX-XXXX/manifest&token=Bearer XXXXX-XXXXX" (proxy server api)
type="application/vnd.apple.mpegurl" data-setup="{"disableUrlRewriter": true}"/>
</video>
I am getting error "No compatible source was found for this media" Please help in this regard.