-
Notifications
You must be signed in to change notification settings - Fork 2
/
what_glitch_CMYK.sh
executable file
·69 lines (48 loc) · 1.54 KB
/
what_glitch_CMYK.sh
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
#!/bin/bash
file=$1
#make a directory to do the glitching
rand=$RANDOM
mkdir /tmp/temp_$rand
cd /tmp/temp_$rand
#convert the movie to frames
avconv -i $file -qscale 0 out_%d.bmp
#count the number files in the directory
fileno=$(ls out_*.bmp -1 | wc -l)
#begin the glitch loop
no=1
while [ $no -le $fileno ]
do
rand1=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 1)
rand2=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 1)
rand3=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 1)
rand4=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 1)
rand5=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 2)
rand6=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 2)
rand7=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 2)
rand8=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 2)
convert -colorspace CMYK -separate out_$no.bmp in_%d.bmp
#glitch the cyan channel
sed -i s/$rand1/$rand5/g in_0.bmp
#glitch the magenta channel
sed -i s/$rand2/$rand6/g in_1.bmp
#glitch the yellow channel
sed -i s/$rand3/$rand7/g in_2.bmp
#glitch the key channel
sed -i s/$rand4/$rand8/g in_3.bmp
#combine the channels into one image
convert in_0.bmp in_1.bmp in_2.bmp in_3.bmp -set colorspace CMYK -combine out_$no.bmp
#clear the directory of files
rm in_*.bmp
echo -e "Glitched file $no of $fileno"
no=$(($no + 1))
done
#get path of file
path=$( readlink -f "$( dirname "$file" )" )
#get filename minus extension
file1=$(basename "$file")
filename="${file1%.*}"
#combine the images into a video
avconv -i out_%d.bmp -qscale 0 "$path"/"$filename"_bmpcmyk.mkv
#remove the temporary directory
cd ../
rm -rf temp_$rand/