apparatix
apparatix

Reputation: 1512

HTML5 Video.js plays video too fast

I'm using video.js to embed videos with HTML5 and the video simply plays too fast. I press the play button and I can tell it's at least 1.5x the proper speed.

Any ideas?

EDIT: Sorry! No code. Here you go. By the way, it's copied from videojs.com itself.

<video class="video-js vjs-default-skin" controls
    preload="auto" data-setup="{}">
    <source src="http://foo.bar/wp-content/uploads/date/video.mp4" type='video/mp4'>
</video>

No webm video for now, I'll work on converting the mp4 to that later.

Also, I'm using this in WP; the admin posts videos that we uploads. No video width, height, poster, or id defined.

Upvotes: 0

Views: 1355

Answers (1)

Mikko Ohtamaa
Mikko Ohtamaa

Reputation: 83758

Most likely your video is not properly encoded to be compatible with web browsers.

  • How did you get the video file in the first place

  • Where does it work

  • How did you preprocess it for web

Upvotes: 1

Related Questions