summaryrefslogtreecommitdiff
path: root/contrib/hls
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-05-05 03:39:13 +0200
committerChristian Pointner <equinox@spreadspace.org>2013-05-05 03:39:13 +0200
commite874f667df0fc5d1a610b0200824af2b993aa0be (patch)
tree12ac4f3486258ec4967ff1d529eb07971fa0a75a /contrib/hls
parentswitched to lanczos for video scaling (diff)
added lac web interface modifications
Diffstat (limited to 'contrib/hls')
-rwxr-xr-xcontrib/hls/start-hls.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/hls/start-hls.sh b/contrib/hls/start-hls.sh
index 7fa4c19..59a18a6 100755
--- a/contrib/hls/start-hls.sh
+++ b/contrib/hls/start-hls.sh
@@ -14,7 +14,7 @@
#
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ]; then
- echo "Usage: $0 <name> <src> (high|medium|low)"
+ echo "Usage: $0 <name> <src> (high|medium|low|mini)"
exit 1
fi
@@ -37,6 +37,9 @@ case "$3" in
low)
arate=96k
;;
+ mini)
+ arate=96k
+ ;;
*)
arate=128k
;;