summaryrefslogtreecommitdiff
path: root/bin/stream
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-05-10 14:50:07 +0200
committerJonas Smedegaard <dr@jones.dk>2017-05-10 14:50:07 +0200
commita5c60b6d3a267b5b0f4215620ec59e71c62ec6aa (patch)
tree95e66b2d7eabbfe115f8fcdace3b6b65da6ecbda /bin/stream
parent357429ed817166ba0ba47d2e6e13158642b450dc (diff)
Support container formats nut and dv.
Diffstat (limited to 'bin/stream')
-rwxr-xr-xbin/stream2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/stream b/bin/stream
index 39233ce..55a95e0 100755
--- a/bin/stream
+++ b/bin/stream
@@ -45,7 +45,7 @@ while [ $# -gt 0 ]; do
videofile=*) VFILE=${1#*=}; VINPUT=$((VINPUT+1));;
*.ffv1|*.yuv|*.vp8|*.vp9) VFILE=$1; VINPUT=$((VINPUT+1));;
container=*) XFILE=${1#*=}; XINPUT=$((XINPUT+1));;
- *.avi|*.mkv|*.mov|*.mp4|*.ogg|*.ogv|*.webm) XFILE=$1; XINPUT=$((XINPUT+1));;
+ *.avi|*.dv|*.mkv|*.mov|*.mp4|*.nut|*.ogg|*.ogv|*.webm) XFILE=$1; XINPUT=$((XINPUT+1));;
*.png) LOGO=$1; WINPUT=$((WINPUT+1));;
--) shift; break;;
*) exit1 "Unsupported input: $1";;