Reputation: 21
I'm using this solution to load iframe containing vimeo videos on ipad and PC web browsers how to control apple video player on ipad (video embeded with iframe and html5 vimeo solution)
It's working well but autoplay is not working on PC web browsers. Do you have solution to autoplay Vimeo videos once the iframe containing the video is loaded?
adding &autoplay=1
to video url is not working
adding &api=1
to video url and $("#video1").play();
is not working
the solution could be :
Upvotes: 2
Views: 3396
Reputation: 31
This is working: autoplay=true
for example: https://player.vimeo.com/video/168478494?autoplay=true
Upvotes: 2