Audio with javascript + streaming from google drive.
1. I have an audio in the library with a linkage of "dude"
2. I use the following code to instantiate and play the audio.
var audio = new Audio(dude);
audio.play();
It doesn't work.
3. I need to add 100's-1000's of audio files - (Learning English platform.)
I would like to host them on google drive and download as necessary.
This way I save on traffic to my website. Is that all possible.
Could you point me in the right direction to learn about streaming audio.
Also, if it's streamed then it won't have a linkage name as it's not in my library so how can I instantiate as needed.
Thanks.
