add placeholders

This commit is contained in:
2023-04-01 08:08:45 +02:00
parent ac045dba00
commit e78354b8c4
58 changed files with 103 additions and 62 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/audio/D.ogg Normal file

Binary file not shown.

BIN
assets/audio/E.ogg Normal file

Binary file not shown.

BIN
assets/audio/F.ogg Normal file

Binary file not shown.

BIN
assets/audio/G.ogg Normal file

Binary file not shown.

BIN
assets/audio/H.ogg Normal file

Binary file not shown.

BIN
assets/audio/I.ogg Normal file

Binary file not shown.

BIN
assets/audio/J.ogg Normal file

Binary file not shown.

BIN
assets/audio/K.ogg Normal file

Binary file not shown.

BIN
assets/audio/L.ogg Normal file

Binary file not shown.

BIN
assets/audio/M.ogg Normal file

Binary file not shown.

BIN
assets/audio/N.ogg Normal file

Binary file not shown.

BIN
assets/audio/O.ogg Normal file

Binary file not shown.

BIN
assets/audio/P.ogg Normal file

Binary file not shown.

BIN
assets/audio/Q.ogg Normal file

Binary file not shown.

BIN
assets/audio/R.ogg Normal file

Binary file not shown.

BIN
assets/audio/S.ogg Normal file

Binary file not shown.

BIN
assets/audio/T.ogg Normal file

Binary file not shown.

BIN
assets/audio/U.ogg Normal file

Binary file not shown.

BIN
assets/audio/V.ogg Normal file

Binary file not shown.

BIN
assets/audio/W.ogg Normal file

Binary file not shown.

BIN
assets/audio/X.ogg Normal file

Binary file not shown.

BIN
assets/audio/Y.ogg Normal file

Binary file not shown.

BIN
assets/audio/Z.ogg Normal file

Binary file not shown.

11
assets/audio/audiogen.py Normal file
View 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