Black screen videos on android #50
AndriaSalah
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
since we can't really re create the bug since it's device specific , i found some leads on what might be the issue .
first it could be that ASTC compression is used and ASTC is supported by recent devices , so first thing we coudl try doing is Changin it to ETC2 which is older and has a higher support rate.
second thing could be a parameter in the video properties called Depth Stencil Format , i read some where that this particular property could also be the issue.
third is that Unity might be using Vulkan api which is also supported by recent devices and in order to ensure every device is compatible we might have to try to specify the use of openGL3.0
if anyone has an opinion on the matter please do tell
Edit :
by changing the graphic api to openGLES3.0 and changing the texture compression to ETC2 the videos are working now on my s8 , so hopefully the issue is fixed now , but there is an issue with the placement of everything due to the difference in DPI between devices i guess
Beta Was this translation helpful? Give feedback.
All reactions