diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/helper.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/helper.php b/lib/helper.php index 23bf051..8951948 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -27,6 +27,9 @@ function link_stream($protocol, $room, $format, $translated = false) case 'hls': return 'http://hls.streaming.media.ccc.de/hls/'.rawurlencode($room).'_'.rawurlencode($language).'_'.rawurlencode($format).'.m3u8'; + + case 'icecast': + return 'http://webm.streaming.media.ccc.de:8000/'.rawurlencode($room).'_'.rawurlencode($language).'.'.rawurlencode($format); } return '#'; |