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
see https://code.google.com/p/chromium/issues/detail?id=76524 for possible cause of the issue. You can test to see if that's the issue by turning off hardware acceleration for your browser (startup command line --disable-accelerated-compositing)
an alternative, hacky, solution that might take some tweaking is to manually adjust brightness via css eg
@media screen and (-webkit-min-device-pixel-ratio:0) {
video{ -webkit-filter: brightness(110%); }
}