Page 1 of 1

AMINO STB display resize

Posted: 25 Jun 2014 16:14
by Mahuna
Hi all, I have a question regarding resizing video player in amino stb... here is the thing...

I have a html page which has some dizajn (logo, few textbox etc...) but when I play video it overlays the html...
I am using

VideoDisplay.SetAlphaLevel(50);

so it has opacity of 50, also when I resize the video with this code

Window0 = VideoDisplay.GetVideoWindow();
Window1 = Window0.GetRectangle();
Window1.width = 300;
Window1.height = 300;
Window0.SetRectangle(Window1);

it only resizes the actual video (screen) not the whole player so my html is still overlayed,

IS there any way I can resize the whole player so my html gets 100% visible?

Thanks

I am using amino A140.

Re: AMINO STB display resize

Posted: 12 May 2020 16:01
by Klyner
I am not sure if people will still need this, but how I solved this problem was by adding a png file to my website which is partly transparent. I positioned the Amino video to the back and put it in the hole so that it can be seen through the transparent part of the image.