meme-circumcision - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
meme-circumcision (259B) | |
--- | |
1 #!/bin/sh | |
2 # small wrapper script to simplify cutting part of a video. | |
3 # Dependencies: ffmpeg | |
4 | |
5 if [ "$1" = "" ] || [ "$2" = "" ] || [ "$3" = "" ]; then | |
6 echo "usage: $0 <infile> <outfile> <from> <duration>" >&2 | |
7 exit 1 | |
8 fi | |
9 | |
10 ffmpeg -i "$1" -ss "$3" -t "$4" "$2" |