aboutsummaryrefslogtreecommitdiff
path: root/template/assemblies/player/audio.phtml
blob: c1c7f8f771b772909be5b5f69e010e6e0f7bf868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<audio
	autoplay="autoplay"
	preload="auto"
	style="width: 230px;"
>
	<source
		src="<?=h(link_stream('audio', $room, 'mp3', @$translated))?>"
		type="audio/mp3"
	/>
	<source
		src="<?=h(link_stream('audio', $room, 'opus', @$translated))?>"
		type="audio/opus"
	/>
</audio>