Hello!
I try to use roVideoPlayer in my big channel but it doesn’t show any picture.
The same url pretty work in the customvideoplayer.
It also good work with roVideoScreen in my channel.
But I can’t to make it working in my application with roVideoPlayer.
I try to use and fullscreen playing and framed version. But it only plays sound and doesn’t show picture.
What I can do wrong?
I have found!
It appears that the field for roVideoPlayer must be filled with black rectangle but not “#000000” (6 zeros). It is obligatory must be “#00000000” (8 zeros) color. This colors looks equally, but roVideoPlayer see a difference between it.
Unfortunately I haven’t found any notes about it in SDK.
The extra zeros are for the alpha channel, so that the rectangle being drawn on top of the video is transparent. You’re essentially cutting a window out of the graphics plane, so the video plane underneath can be seen. Without the transparency bits, you’re drawing an opaque black rectangle, so the video underneath can’t be seen.
It is not quite so, TheEndless.
It is also doesn’t show any picture if I use fully cleared layers on roImageCanvas.
roImageCanvas really never clear screen. So using your logic, picture of video must be covered with more low not transparent layers. But they doesn’t cover it if at top layer exists “#00000000” filled rectangle.