I want to play sound (.wav, as byte[]) in one of my apps I develop using Vaadin 14
. Unfortunately I did not find a component for this use case.
Vaadin 8 offered Audio
(https://vaadin.com/api/framework/8.5.2/com/vaadin/ui/Audio.html) but it is not available in Vaadin 14.
I think there is a solution by simply using HTML <audio>
and import this.
<body>
<audio src="test.wav" controls autoplay loop>
</audio>
</body>
Is there also a "Vaadin 14"-solution for this?