-
Notifications
You must be signed in to change notification settings - Fork 13
/
pic2vid
executable file
·84 lines (74 loc) · 1.55 KB
/
pic2vid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env bash
#
# pic2vid
#
# Convert multiple pictures to a video (time lapse)
#
# Author: Emanuel Duss
#
DIR="$1"
PICDIR="pic2vid"
SMALLDIR="$DIR/$PICDIR"
SIZE="x1080"
QUALITY="90"
OUTPUTFILE="output.mpg"
CODEC="libx264"
FRAMESPERSECOND="25"
Printusage () {
echo "Usage:
$0 directory"
}
if [ -z "$1" ]
then
Printusage
exit 1
fi
if [ ! -d "$DIR" ]
then
echo "$DIR ist kein Verzeichnis"
Printusage
exit 1
fi
if [ -d "$SMALLDIR" ]
then
echo "Verzeichnis für aufzubereitende Fotos bereits vorhanden."
else
mkdir "$SMALLDIR"
fi
if [ ! -d "$SMALLDIR" ]
then
echo "Kann $SMALLDIR nicht anlegen. Bitte Berechtigungen prüfen."
exit 1
fi
cd $DIR
TOTAL="`ls *.[Jj][Pp][Gg] | wc -l`"
COUNT="1"
for file in *.[Jj][Pp][Gg]
do
if [ -f "${PICDIR}/$file" ]
then
echo "Überspringe $file, da bereits konvertiert (${PICDIR}/$file)"
else
echo "$file: Foto $COUNT von $TOTAL ($((100 * $COUNT / $TOTAL))%)"
convert -resize $SIZE -quality $QUALITY "$file" "${PICDIR}/$file"
fi
((COUNT++))
done
# Rename pictures (like 0001.jpg to 2342.jpg)
cd $PICDIR
LENGTH="`ls *.[Jj][Pp][Gg] | wc -l | wc -L`"
NUMBER="1"
for file in *.[Jj][Pp][Gg]
do
NEWNAME="`printf %0${LENGTH}d $NUMBER`.jpg"
if [ -f "$NEWNAME" ]
then
echo "Datei $file bereits umbenannt. OK."
else
# Symlink statt umbenennen, damit die Prüfung ob schon konvertiert auch funktioniert
ln -s "$file" "`printf %0${LENGTH}d $NUMBER`".jpg
fi
((NUMBER++))
done
# create the video
ffmpeg -f image2 -i %0${LENGTH}d.jpg -r $FRAMESPERSECOND -vcodec $CODEC ../$OUTPUTFILE