Join the Webstudio community

Updated 7 months ago

How we can have Audio player ?

At a glance

The community member who posted the original post is looking to display audio on a hosting service. The comments suggest using HTML5 audio tags to embed audio, but there are some challenges with uploading MP3 files to the hosting service. One community member mentions that MP3 files may need to be hosted elsewhere and then linked to in the HTML. However, there is no explicitly marked answer in the comments.

Useful resources
Hello I host sound on hposting service and I wand Display them
Attachment
image.png
R
H
B
5 comments
I think you're looking for this: https://www.w3schools.com/html/html5_audio.asp

Plain Text
<audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
But how do you get the mp3 into WebStudio? The resource upload form doesn't support mp3.
Ahh it's like with mp4 videos. They should be uploaded elsewhere and then take that link in the src.
Oh, ok. Bummer.
has anyone succeeded in accomplishing this?
Add a reply
Sign up and join the conversation on Discord