human Posted April 1, 2022 Posted April 1, 2022 I have a solution which can play audio files which are cloud hosted, using a web viewer with this code: "data:text/html, <body style='border=0;overflow:hidden'> <body topmargin=0> <body leftmargin=0> <audio controls preload='metadata' autoplay style='width:480px;'> <source src=" & tempmaster::global_track_path & " type='audio/mp4'> <source src="& tempmaster::global_track_path & " type='audio/mp3'> <p>Your browser does not support HTML5 audio.</p> </audio> <p> <strong>Download Audio:</strong> <a href=" & tempmaster::global_track_path & ">M4A</a> </p>" I found that using this method is much faster than downloading the file to a container and then playing it, and also the HTML5 controls look good and work well on Mac, on which I get, from left to right, a reverse by 15 seconds button, a play/pause button, a forward by 15 seconds button, the play wiper, audio output device, and speed controls. And autoplay works. However, when I open the same solution on Windows, all I get is a play/pause button, the wiper, and speed controls, and auto play does not work. Is there any way to improve this on Windows?
Recommended Posts
This topic is 869 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now