Closed Yaasha closed 4 years ago
Thanks for your contribution @Yaasha!
Unfortunately I was not able to reproduce the issue with Chrome 84 on MacOS.
Here's your demo code on JSFiddle: https://jsfiddle.net/bxc08674/
You can also test the Vimeo integration on the official demo: https://blueimp.github.io/Gallery/ In the Carousel video gallery, the video "KN1GHT - Last Moon" is hosted by Vimeo.
Could you confirm if you can reproduce the issue on the official demo or the provided JSFiddle link? And if yes, could you provide more info on your environment, e.g. Chrome version and Operating System info (e.g. Windows version)?
Hi,
Yes, I am having the same issue on the official demo and the JSFiddle. However, I've noticed that on these pages, I can successfully start the video (after page reload) roughly 50% of the time, whereas before I got this issue every time.
Here's more info regarding my setup:
I've also tried running the demo on the same Chrome version on Windows 10 and everything worked fine, so this might be Ubuntu/Linux exclusive issue. I also know that other people could reproduce this issue, so it's not exclusive to my exact setup (however I don't know their setup info).
I've tried running the demo in anonymous window and with all extensions disabled and could still reproduce the issue.
Hope this helps.
Thanks for the info! I could reproduce this on Chromium 84 on ubuntu 18.04 as well. And I can confirm that your fix in https://github.com/blueimp/Gallery/pull/254 resolves the issue, which has been merged.
The vimeo player won't start after clicking the gallery play button. This only occurs on chrome, firefox plays the video just fine.
Here is an example code to reproduce the issue:
I'm guessing this issue is related to chrome's autoplay policy, since the gallery controls the player through external controls, which does not get registered as user action and chrome flags it as an autoplay attempt.
Adding
allow="autoplay"
to the vimeo iframe and setting its src to start withhttps://
should solve this.