summaryrefslogtreecommitdiff
path: root/src/cutting
blob: eb555fd1dcac73fcf9314bb1abf5d97f9e705a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

S="00:00:10.321"
D="00:00:03.715"
FILE="../heute100sec.wmv"
OUT_FILE="output.mpg"

ee() {
	echo "$@"
	eval "$@" 2>/dev/null >/dev/null
}
i=0
./advtime -d $FILE | while read time
do
	i=$((i+1))
	param=$(printf -- "-ss %s -t %s" $time)

	ee ffmpeg -y -i $FILE -sameq $param `printf "outfile-%02d.mpg" $i`
done