When using vimeo on iPhone, controls should be shown like so:

No controls shown when using Vimeo on iPhone

Players affected:
Thank you for the good work, the player loosk fantastic :+1:
@card This should be fixed now 馃憤
I have the same question. When using html5 on iPhone, the big-play button should be shown and can play when click the big-play.
It does 馃檮
@sampotts No, it doesn鈥榯... you can see from the snugnest.com in iphone . I don't know what's wrong...
OK but it does on https://plyr.io so you have a problem elsewhere...
Just a note on this.
I'm using vue-plyr and it doesn't seem to be showing any plyr ui on mobile.
People can be experiencing issues with potential plugins. As I can't seem to get any plyr UI to show on iOS. Still trying to find the solution.
Same problem for me, the big play button and the controls aren't appearing on iPhone
Use the latest version - v3.1.0. If you're using a plugin/wrapper by someone else (like Vue, React, etc) then you need to contact the author to get them to upgrade...
Ok thanks, I was using the 3.0.6 version, i'll try with the latest one. (ps : Not using vue, react etc.)
@sampotts
I don't want to disturb but it's still not working for me. It only doest that on iPhone, on iPad it's fine. I can't event stop the video. I even tried a test version of the page i'm coding, I removed all javascript except for plyr and still not working. I can send you the test link if you want.
@sampotts
Seeing the same problem. Using the latest Plyr version. The controls are not added on iOS for a vimeo embed. Youtube and native video are fine. Will further investigate tomorrow and come back here if I find what's causing it.
Do you see the same on https://plyr.io ?
@sampotts yes i see the video on your homepage.
This is what I use to initialise the players:
var player = new Plyr(this, { autoplay: false, controls: ['play', 'progress', 'mute', 'volume', 'fullscreen', 'settings'], settings: ['captions', 'quality'], fullscreen: { enabled: true, fallback: true, iosNative: true }, clickToPlay: true });
And this is the html:
<div id="player-454" class="video-player plyr__video-embed">
<iframe src="https://player.vimeo.com/video/222486164?loop=false&autoplay=true&byline=false&portrait=false&title=false&speed=true&transparent=0&gesture=media" allowfullscreen allowtransparency allow="autoplay"></iframe>
</div>
Like I said before, youtube and video work fine.
@sampotts tested last night on Android Chrome and it's fine there, on iOS it doesn't work in Chrome either. It seems like there's definitely a bug there.
@sampotts I've done some debugging today and have found what the problem is.
For Vimeo, this condition on line 6653 truthy.includes(params.playsinline) is not met and as a result this.config.inline = true; isn't set.
This in turn causes var playsInline = browser.isIPhone && inline && support.inline to be false and as a result ui = support.rangeInput && (!browser.isIPhone || playsInline) is undefined.
As a result the controls don't get added for Vimeo on iOS.
Thanks for that. I'll get a fix into the next release (hopefully tomorrow).
This should actually be resolved now in v3.2.0
@sampotts yes, seems to be working, thanks!
Most helpful comment
@sampotts I've done some debugging today and have found what the problem is.
For Vimeo, this condition on line 6653
truthy.includes(params.playsinline)is not met and as a resultthis.config.inline = true;isn't set.This in turn causes
var playsInline = browser.isIPhone && inline && support.inlineto be false and as a resultui = support.rangeInput && (!browser.isIPhone || playsInline)is undefined.As a result the controls don't get added for Vimeo on iOS.