Embedding Audio/Video in Data Item description
I understand that Questetra allows audio and video links to be embedded in task input forms by using HTML in the description section of a Data Item.
I have tried using the HTML formats described in the page R2131 to achieve this, for example, using the tags:
<audio>
<source src="example.mp3" type="audio/mpeg">
</audio>
but this does not work, and only the HTML code is shown in the preview window. Do you have any examples of how to correctly implement this function that can be used as a guide?
-
Hi, Pete,
In the description section of a Data Item, you can't use <source> tags. And for <audio> tags, only "src" and "control" attributes can be used, and the value of the "src" must be a full path.
Here is an example:
<audio controls src="https://www.example.com/example.mp3"> </audio>
Please sign in to leave a comment.
Comments
1 comment