How to deal with poor HTML5 video performance in Chrome?

前端 未结 1 1648
面向向阳花
面向向阳花 2021-01-31 09:11

Over a year ago we added an video page on our site. At the time OGV wasn\'t very good, and there was no good WebM encoders available, so we decided to use HTML5 and h.264 for we

1条回答
  •  失恋的感觉
    2021-01-31 09:45

    HW-acc video decode

    This is the flag I mean. If the flag is disabled, the browser tries to use hw-accelerated video decoding, which I can grant provokes wrong and slow video renderization in some devices. If enabled, hw-accelerated video decode is never used, but the above mentioned problems disappear. It theorically increases decoding time in devices actually able to use such acceleration, but I've been working around this field for almost a year and I still didn't realize any difference in that matter. Still didn't get to know how to identify if a device will behave properly (the availability of this feature doesn't seem to grant its proper behavior) with such acceleration without testing, though.

    0 讨论(0)
提交回复
热议问题