diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/assemblies/player/video.phtml | 2 | ||||
-rw-r--r-- | template/assemblies/switcher/video.phtml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/assemblies/player/video.phtml b/template/assemblies/player/video.phtml index 8d45488..14ecc7d 100644 --- a/template/assemblies/player/video.phtml +++ b/template/assemblies/player/video.phtml @@ -9,7 +9,7 @@ <? if($format == 'hq'): ?> <source data-plugin-type="native" - src="<?=h(link_stream('icecast', $room, $format, $translated))?>" + src="<?=h(link_stream('icecast', $room, 'webm', $translated))?>" title="WebM (Icecast)" type="video/webm" /> diff --git a/template/assemblies/switcher/video.phtml b/template/assemblies/switcher/video.phtml index 1ecf0f6..e4551bb 100644 --- a/template/assemblies/switcher/video.phtml +++ b/template/assemblies/switcher/video.phtml @@ -40,11 +40,11 @@ <ul> <li> <span class="label filetype">HQ</span> - <a href="<?=h(link_stream('icecast', $room, 'hq'))?>"> + <a href="<?=h(link_stream('icecast', $room, 'webm'))?>"> <span class="fa fa-flag-o"></span> native </a> - <a href="<?=h(link_stream('icecast', $room, 'hq', true))?>"> + <a href="<?=h(link_stream('icecast', $room, 'webm', true))?>"> <span class="fa fa-flag"></span> translated </a> |