rob.m
rob.m

Reputation: 10601

vimeo html 5 player not showing

Anyone have an idea?

I am using this http://vimeo.com/api/docs/player#universal

on a right click on the player i only see the flash in my own embed code using their universal player. This si what I have:

 <iframe src="http://player.vimeo.com/video/<?php the_field('vimeo'); ?>" width="692" height="389" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

Testing with latest chrome.

Upvotes: 0

Views: 1500

Answers (1)

James Hay
James Hay

Reputation: 7325

The Vimeo universal player will detect what capabilities your browser has and will fallback to either the HTML5 player or the Flash player depending on which capability you are missing.

If your browser supports both players, it will use the type of player that you have chosen to use on the Vimeo site for all embedded videos in other sites. By default (or if you don't have a Vimeo account) the Flash player will be displayed.

So in summary it is dependantly firstly on your browser capability and secondly on your preference with the Vimeo site.

Upvotes: 1

Related Questions