I\'ve got a big problem. I made an app presentation video by myself with background colors I want.
Now I would like to play it in a HTML5 player. Everythings work b
I found a very productive solution. I got an issue with videos colors on different PC. For instance, on one part of PC I got black color as #000000 but on other one I got #101010 color. After 1 week of brainstorm I eventually found that changing contrast of the video to 110% solving that problem totally. All, that you should do is to add that CSS row to your video:
-webkit-filter: contrast(110%);
and black becomes normal #000000 on all PC.