HTML5 Player Wrong video colors

后端 未结 4 1789
失恋的感觉
失恋的感觉 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:25

    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.

提交回复
热议问题