add placeholders
BIN
assets/audio/D.ogg
Normal file
BIN
assets/audio/E.ogg
Normal file
BIN
assets/audio/F.ogg
Normal file
BIN
assets/audio/G.ogg
Normal file
BIN
assets/audio/H.ogg
Normal file
BIN
assets/audio/I.ogg
Normal file
BIN
assets/audio/J.ogg
Normal file
BIN
assets/audio/K.ogg
Normal file
BIN
assets/audio/L.ogg
Normal file
BIN
assets/audio/M.ogg
Normal file
BIN
assets/audio/N.ogg
Normal file
BIN
assets/audio/O.ogg
Normal file
BIN
assets/audio/P.ogg
Normal file
BIN
assets/audio/Q.ogg
Normal file
BIN
assets/audio/R.ogg
Normal file
BIN
assets/audio/S.ogg
Normal file
BIN
assets/audio/T.ogg
Normal file
BIN
assets/audio/U.ogg
Normal file
BIN
assets/audio/V.ogg
Normal file
BIN
assets/audio/W.ogg
Normal file
BIN
assets/audio/X.ogg
Normal file
BIN
assets/audio/Y.ogg
Normal file
BIN
assets/audio/Z.ogg
Normal file
11
assets/audio/audiogen.py
Normal file
@@ -0,0 +1,11 @@
|
||||
mx = 8000
|
||||
|
||||
x = 0
|
||||
alphabet = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
|
||||
interval = int(mx/(len(alphabet)))
|
||||
with open("genudio.sh", "w") as f:
|
||||
for i in range(0, len(alphabet)):
|
||||
letter = alphabet[x]
|
||||
freq = (i+1) * interval
|
||||
f.write(f'ffmpeg -f lavfi -i "sine=frequency={freq}:duration=5" {letter}.ogg\n')
|
||||
x = x + 1
|
Before Width: | Height: | Size: 120 B After Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 120 B After Width: | Height: | Size: 277 B |
BIN
assets/images/D.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/E.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/F.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/G.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/H.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/I.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/J.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/K.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/L.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/M.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/N.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/O.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/P.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/Q.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/R.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/S.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/T.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/U.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/V.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/W.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/X.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/Y.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
assets/images/Z.png
Normal file
After Width: | Height: | Size: 277 B |
17
assets/images/imagegen.py
Normal file
@@ -0,0 +1,17 @@
|
||||
def getRGBfromI(RGBint):
|
||||
blue = RGBint & 255
|
||||
green = (RGBint >> 8) & 255
|
||||
red = (RGBint >> 16) & 255
|
||||
return red, green, blue
|
||||
|
||||
mx = pow(2,24)-1 # i.e. 16777215
|
||||
|
||||
x = 0
|
||||
alphabet = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
|
||||
interval = int(mx/(len(alphabet)))
|
||||
with open("gen.sh", "w") as f:
|
||||
for i in range(0, len(alphabet)):
|
||||
red, green, blue = getRGBfromI(i*interval)
|
||||
letter = alphabet[x]
|
||||
f.write("convert -size 32x32 xc:rgb\(" + str(red) + "," + str(green) + "," + str(blue) + "\) " + letter +".png\n")
|
||||
x = x + 1
|
BIN
assets/play.png
Before Width: | Height: | Size: 300 B |