projects
/
experiments
/
gstreamer.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0379f6b
)
ges-cut-clip.sh: fix a typo s/bliling/bailing/
author
Antonio Ospite <ao2@ao2.it>
Tue, 7 Jun 2016 08:56:52 +0000
(10:56 +0200)
committer
Antonio Ospite <ao2@ao2.it>
Tue, 7 Jun 2016 08:56:52 +0000
(10:56 +0200)
shell/ges-cut-clip.sh
patch
|
blob
|
history
diff --git
a/shell/ges-cut-clip.sh
b/shell/ges-cut-clip.sh
index
67494bd
..
c762ec0
100755
(executable)
--- a/
shell/ges-cut-clip.sh
+++ b/
shell/ges-cut-clip.sh
@@
-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, b
l
iling out!" 1>&2; exit 1; }
+[ -e "$4" ] && { echo "Output file already exists, b
a
iling out!" 1>&2; exit 1; }
OUTPUT_FILE="$4"
ges-launch-1.0 -s "$INPUT_FILE" $INPOINT $DURATION -o "$OUTPUT_FILE"