tc-video-*: Fix sample duration

master
Pierre Neidhardt 2015-09-13 10:26:17 +02:00
parent d92b14d463
commit 82bedbb226
2 changed files with 11 additions and 7 deletions

View File

@ -12,24 +12,28 @@ FFmpeg.
Modes:
-e: Excerpt of 1 minute starting at 1 minute.
-f: Full video.
-f: Full video.
-s: Sample of 5 minute starting at 1 minute.
-S N: Sample of N minutes starting at 1 minute.
EOF
}
SAMPLE=""
OPT_PROCESS=false
while getopts ":hef" opt; do
while getopts ":hfsS:" opt; do
case $opt in
h)
_usage "$0"
exit 1 ;;
e)
SAMPLE="-ss 60 -t 60"
OPT_PROCESS=true ;;
f)
OPT_PROCESS=true ;;
s)
SAMPLE="-ss 60 -t 300"
OPT_PROCESS=true ;;
S)
SAMPLE="-ss 60 -t $((60*$OPTARG))"
OPT_PROCESS=true ;;
\?)
_usage "$0"
exit 1 ;;

View File

@ -126,7 +126,7 @@ while getopts ":a:b:cCd:fho:pPq:sS:t" opt; do
q)
VIDEO_PARAM="-c:v libx264 -preset slower -crf $OPTARG";;
s)
SAMPLE="-ss 60 -t 360" ;;
SAMPLE="-ss 60 -t 300" ;;
S)
SAMPLE="-ss 60 -t $((60*$OPTARG))" ;;
t)