How to Auto-Play and Loop Audio and Video files in Android?

By 42Gears Team
Applies to:
Product General
Platform Android

The Auto-play and Loop functions in Android is disabled to minimize the user bandwidth however this post may offer you some help if trying to find a quick fix for this problem.

All you have to do is to follow following two easy steps.

1. Use following script for your HTML file –

function onPageLoad()
{
loadVideo();
loadAudio();
}

function loadVideo()
{
document.getElementById("sampleVideo").src = "./surefox.mp4";
document.getElementById("sampleVideo").load();
startPlayingvideo();
}

function loadAudio()
{
document.getElementById("sampleAudio").src = "./surefox.mp3";
document.getElementById("sampleAudio").load();
startPlayingaudio();
}

function startPlayingaudio()
{
//Keep looping the same audio
setTimeout(function() { document.getElementById("sampleAudio").play(); },100);
}
function startPlayingvideo()
{
//Keep looping the same Video
setTimeout(function() { document.getElementById("sampleVideo").play(); },100);
}

Note – Change the name of the audio and video file accordingly and make necessary changes if using only video or only audio files.

2. For the body of the HTML file, use following –






For quick check, download a sample file by clicking click here.

For any questions, do feel free to reach us on techsupport@42gears.com.


“Written with expertise and passion to help you understand the topic better.”

4
42Gears Team – Content Author
Updated on: January 6, 2023 | Published on: October 21, 2013

Subscribe to our newsletter

Stay updated with the latest news, articles, and resources on enterprise mobility.

Weekly articles
Actionable insights delivered once a week. No noise.
No spam
Your privacy matters. Unsubscribe anytime.