#!/bin/sh PLAYER=ffplay ROOMS=\ "rc1 rc2 bitwaescherei cbase csh chaostrawler chaoszone cwtv2 franconiannet hacc kreaturworks oio r3s restrealitaet sendezentrum wikipaka xhain infobeamer classics c3lounge" usage() { printf '%s \nRooms:\n%s\n' "$0" "$ROOMS" exit 2 } [ -z $1 ] && usage # HD webm $PLAYER "https://cdn.c3voc.de/${1}_native_hd.webm" # SD webm #$PLAYER "https://cdn.c3voc.de/${1}_native_sd.webm" # HD HLS #$PLAYER "https://cdn.c3voc.de/hls/${1}_native_hd.m3u8" # HD HLS #$PLAYER "https://cdn.c3voc.de/hls/${1}_native_sd.m3u8"