Reputation: 1
I have making a website with a youtube video background. The video is autoplaying in desktop browesr but not autoplaying in mobile browser. My code is:
<iframe src="https://www.youtube.com/embed/uv2Sj4rSq3A?autoplay=1&loop=1&showinfo=0" class="fill" style="width: 100%;"></iframe>
Upvotes: 0
Views: 10539
Reputation: 9289
It's known fact that youtube video can't be auto-play on mobile. Here is the warning https://developers.google.com/youtube/iframe_api_reference
Due to this restriction, functions and parameters such as autoplay, playVideo(), loadVideoById() won't work in all mobile environments.
Upvotes: 2