25.3.2231.6R Changelog
Summary of changes
We have introduced an INI to support different screen rotations. To change the rotation in the INI file, please use the following values in the “
system.user_rotation
" parameter (please note, these are clockwise rotations):0 = 0 degrees 1 = 90 degrees 2 = 180 degrees 3 = 270 degrees.
There was an issue where IGMP queries were being sent with the incorrect source IP address. We have implemented a new INI to disable the IGMP helper (system.igmp_helper.enable) with the default being true (enable). You can add the following INI to disable the helper:
1 system.igmp_helper.enable="0"
Sample Code
Sample request to play a widevine encrypted DASH stream with custom headers when requesting encryption license
[Explain how this might be used?]
var config = {
encryption_type: "com.widevine.alpha",
encrypting_server: "http://demo.aminocom.com/license",
encrypting_request_header: {"header_a": ".....", "header_b": "...."}
}
videoControl.open("http://www.aminocom.com/videos/sample_enc.mpd", config);
Â
Â