ges-cut-clip.sh: user bash in the shebang line
[experiments/gstreamer.git] / shell / ges-cut-clip.sh
index 67494bd..8ffc814 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 set -e
 
@@ -16,7 +16,7 @@ read DURATION_HH DURATION_MM DURATION_SS <<< ${3//:/ }
 INPOINT=$((${INPOINT_HH#0} * 60 * 60 + ${INPOINT_MM#0} * 60 + ${INPOINT_SS#0}))
 DURATION=$((${DURATION_HH#0} * 60 * 60 + ${DURATION_MM#0} * 60 + ${DURATION_SS#0}))
 
-[ -e "$4" ] && { echo "Output file already exists, bliling out!" 1>&2; exit 1; }
+[ -e "$4" ] && { echo "Output file already exists, bailing out!" 1>&2; exit 1; }
 OUTPUT_FILE="$4"
 
-ges-launch-1.0 -s "$INPUT_FILE" $INPOINT $DURATION -o "$OUTPUT_FILE"
+ges-launch-1.0 +clip "$INPUT_FILE" inpoint=$INPOINT duration=$DURATION -o "$OUTPUT_FILE"