aboutsummaryrefslogtreecommitdiff
path: root/template/assemblies/player/audio.phtml
blob: 6c5593c892978904df69b1a507c4df7ab308b85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<audio
	autoplay="autoplay"
	preload="auto"
	style="width: 960px;"
>
	<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>