player.js: ?playsinline=0 does not work on Android
Expected Behavior
<iframe src="vimeo url" playsinline="false" allowfullscreen> plays video inline As playsinline is set false, the video must open in fullscreen.Actual Behavior
The video does not play in fullscreen, instead plays inline. `<html>
<head> <title> Vimeo Video Test</title> <script src="https://player.vimeo.com/api/player.js"></script> </head> <body>Vimeo Video
<div class="video mainVideo"> <iframe id="vdoframe" playsinline="false" src="https://player.vimeo.com/video/183487978" frameborder="0" allowfullscreen webkitallowfullscreen></iframe> </div> </body>`About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 17 (7 by maintainers)
Hello, this issue shouldn’t be closed, it’s still not working on Android, player.js v2.10.1 (latest) @luwes
This should be resolved in our latest player release.
@MyTestApp8200
playsinlinecan’t be set as an attribute on an iframe element. It’s either via Javascript in the options argument or else as an URL parameter as?playsinline=0.Does this work for you?