Forum Discussion
Miiro
2 years agoCommunity Member
SOLUTION : Auto-playing embedded videos in Rise 360
I'm posting this because I've only found forum discussions saying it was impossible. I managed to do it by changing the iFrame integration code, after the video's URL, to :
autoplay=1&loop=0&autop...
AlainaVentresca
6 months agoCommunity Member
Hey Formation XCEPTIO, is this still working for you? I cant seem to get it sorted on my end.
- ChristinaBro2884 months agoCommunity Member
Hi Alania,
I ran into the same issue. I removed the "allow="autoplay" attribute from the iframe, which seems to resolve the problem. Below is an example:Original: style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" frameborder="0" scrolling="no" webkitallowfullscreen mozallowfullscreen allowfullscreen allow="autoplay; fullscreen;">
Updated: style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" frameborder="0" scrolling="no" webkitallowfullscreen mozallowfullscreen allowfullscreen allow="fullscreen;">
I hope this is helpful.