HTML5 Player Wrong video colors

后端 未结 4 1798
失恋的感觉
失恋的感觉 2021-01-13 22:52

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

4条回答
  •  感动是毒
    2021-01-13 23:27

    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%); }
    }
    

提交回复
热议问题