Search code examples
htmlaudiomp3base64url

Can audio files be used inline in HTML?


Images can be used inline in websites using <img src=”data:<MIMETYPE>;base64,<BASE64_ENCODED_IMAGE>”>

Does this also work for audio files (e.g. mp3)?


Solution

  • Short answer yes

    long answer

    convert your audio file into base64 using either online or other form of tools

    ex: src="src="data:audio/ogg;base64,......." />

    here is a live link