Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 webkit browsers (Chrome, Safari, etc.) and then fallback to Flash for other browsers (using the same h.264 source file.)

This has been working great for a while. Recently (month or two maybe, so over multiple Chrome versions - currently Version 24.0.1312.52 m) we discovered Chrome really lagging on the playback. We thought it was a server issue, so we upgraded the server, and it is still behaving the same. I remembered reading that Google wanted to drop h.264 and move everyone to WebM, and thought this performance was part of that. We converted some videos to WebM and tested them with Chrome and they lag just as bad. Same video (WebM) streams beautifully in FireFox, and the MP4 streams great in FireFox via the Flash plug in.

I went to YouTube and turned on the HTML5 video support, and found the videos to lag in Chrome too (when running at HD) while they play fine in Flash mode. (Even when HTML5 is enabled, some videos still play via Flash.)

Tested on both Windows 8 and Mountain Lion.

I've talked to co-workers and they are seeing the same issues. So it isn't just me. So my question is:

  1. Is this an issue with our video encoding?
  2. Is it a bug with Chrome?
  3. Or is it just localized to us?
  4. Is there a way to deal with this besides switching back to Flash?
share|improve this question
I see this too, but only noticeable at larger video sizes. To be honest I had put this down to the lack-of power on my test machine - but maybe not?! – w3d Jan 19 at 11:27
@w3d A year ago the performance was good. I thought I was having machine issues too, or that I changed the encoding, but even old videos play the same. – Jim McKeeth Jan 19 at 18:40
Can you share a test video, encoded the same as your content but exhibiting the same behavior? Does it behave the same on OSX and Windows? Is it a large framesize, or a high framerate? Do you have any Chrome plugins/extensions that may be skewing the results – Offbeatmammal Jan 21 at 22:02
@Offbeatmammal Same on OSX and Windows - I've tried it with all Chrome extensions disabled. . You can download the MP4 video from here‌​. It is 720p. – Jim McKeeth Jan 22 at 0:28
Hey Jim, tried the video (and others on the site) from home in Chrome on OSX and they seem fine, even seeking way ahead of the buffer is fine. what are you experiencing by way of "lag"? They are fine in both the small and the large modes (fun to see Pascal again after all these years!). How does it behave through an event logger like gist.github.com/3718414? – Offbeatmammal Jan 22 at 5:33
show 4 more comments

migrated from webmasters.stackexchange.com Jan 19 at 7:03

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.