Want to play audio file (mp3)

Confluence User - 19 May, 2025

Could guide me how to play audio files?

forms

2


22 May, 2025
confluenceUser
confluenceUser

Hi Chanheng, you will have to write custom script to achieve this. Please refer:

https://jogetdoc.int.joget.cloud/jw/web/userview/jdocs/docs/DX8/custom-html

HTML Code

30 May, 2025
confluenceUser
confluenceUser

Hello, after adding a File Upload field with an uploaded mp3 file, you can try this script in Custom HTML.

<ul class="form-fileupload-value">
    <li>
        <audio controls>
            <source src="/jw/web/client/app/<REPLACE APP ID>/1/form/download/<REPLACE FORM ID>/<REPLACE RECORD ID>/<REPLACE MP3 FILE NAME>.mp3.?attachment=true" type="audio/mpeg">
            Your browser does not support the audio element.
        </audio>
    </li>
</ul>


RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print