+ 1
Audio adding
From where I can convert audio in html code like img and how to use
7 Risposte
+ 1
Debansu Das , in case you have uploaded the audio in Dropbox, you might want to modify the link a bit, as follows:
Example audio file URL:-
"https://www.dropbox.com/scl/fi/zcwrwpdesqcdh90pw1fg9/Come-See-The-Wonder.mp3?rlkey=3nddyhkvzcgqpkgf9hk7f3km9&st=ms15zhw "
Modify this to:-
"https://www.dl.dropboxusercontent.com/scl/fi/zcwrwpdesqcdh90pw1fg9/Come-See-The-Wonder.mp3?rlkey=3nddyhkvzcgqpkgf9hk7f3km9&st=ms15zhwi&dl=0 "
[Basically, I just changed "www.dropbox.com" to "www.dl.dropboxusercontent.com" keeping everything else unchanged.]
I don't know if this is standard, but it works quite well for me. Hope this helps. Keep coding.
+ 1
You need to use the audio tag. You need to use the src attribute to specify the correct source. The control attribute will make your audio visible.
<audio src="https://example.com/audio.mp3" controls></audio>
To insert an audio file you need to use the mp3 format.
+ 1
Use this example
https://sololearn.com/compiler-playground/WZEd4GjZzbr1/?ref=app
0
But where to i convert the audio in html code
0
You can use the playground here. You can find mp3 file in the internet.
0
You must provide the correct path if the file is saved in a folder. If you're downloading from the internet, make sure the link works and there are no typos. It will definitely work if the source is found.
0
Nurye seid