This commit is contained in:
Nishi 2026-05-23 02:26:17 +09:00
commit 57a53f4c1f
153 changed files with 136173 additions and 0 deletions

BIN
samples/AA0.wav Normal file

Binary file not shown.

BIN
samples/AA1.wav Normal file

Binary file not shown.

BIN
samples/AA2.wav Normal file

Binary file not shown.

BIN
samples/AE.wav Normal file

Binary file not shown.

BIN
samples/AE0.wav Normal file

Binary file not shown.

BIN
samples/AE1.wav Normal file

Binary file not shown.

BIN
samples/AE2.wav Normal file

Binary file not shown.

BIN
samples/AH0.wav Normal file

Binary file not shown.

BIN
samples/AH1.wav Normal file

Binary file not shown.

BIN
samples/AH2.wav Normal file

Binary file not shown.

BIN
samples/AO0.wav Normal file

Binary file not shown.

BIN
samples/AO1.wav Normal file

Binary file not shown.

BIN
samples/AO2.wav Normal file

Binary file not shown.

BIN
samples/AW0.wav Normal file

Binary file not shown.

BIN
samples/AW1.wav Normal file

Binary file not shown.

BIN
samples/AW2.wav Normal file

Binary file not shown.

BIN
samples/AY0.wav Normal file

Binary file not shown.

BIN
samples/AY1.wav Normal file

Binary file not shown.

BIN
samples/AY2.wav Normal file

Binary file not shown.

BIN
samples/B.wav Normal file

Binary file not shown.

BIN
samples/CH.wav Normal file

Binary file not shown.

BIN
samples/D.wav Normal file

Binary file not shown.

BIN
samples/DH.wav Normal file

Binary file not shown.

BIN
samples/EH0.wav Normal file

Binary file not shown.

BIN
samples/EH1.wav Normal file

Binary file not shown.

BIN
samples/EH2.wav Normal file

Binary file not shown.

BIN
samples/ER0.wav Normal file

Binary file not shown.

BIN
samples/ER1.wav Normal file

Binary file not shown.

BIN
samples/ER2.wav Normal file

Binary file not shown.

BIN
samples/EY0.wav Normal file

Binary file not shown.

BIN
samples/EY1.wav Normal file

Binary file not shown.

BIN
samples/EY2.wav Normal file

Binary file not shown.

BIN
samples/F.wav Normal file

Binary file not shown.

BIN
samples/G.wav Normal file

Binary file not shown.

BIN
samples/HH.wav Normal file

Binary file not shown.

BIN
samples/IH0.wav Normal file

Binary file not shown.

BIN
samples/IH1.wav Normal file

Binary file not shown.

BIN
samples/IH2.wav Normal file

Binary file not shown.

BIN
samples/IY0.wav Normal file

Binary file not shown.

BIN
samples/IY1.wav Normal file

Binary file not shown.

BIN
samples/IY2.wav Normal file

Binary file not shown.

BIN
samples/JH.wav Normal file

Binary file not shown.

BIN
samples/K.wav Normal file

Binary file not shown.

BIN
samples/L.wav Normal file

Binary file not shown.

BIN
samples/M.wav Normal file

Binary file not shown.

BIN
samples/N.wav Normal file

Binary file not shown.

BIN
samples/NG.wav Normal file

Binary file not shown.

BIN
samples/OW0.wav Normal file

Binary file not shown.

BIN
samples/OW1.wav Normal file

Binary file not shown.

BIN
samples/OW2.wav Normal file

Binary file not shown.

BIN
samples/OY0.wav Normal file

Binary file not shown.

BIN
samples/OY1.wav Normal file

Binary file not shown.

BIN
samples/OY2.wav Normal file

Binary file not shown.

BIN
samples/P.wav Normal file

Binary file not shown.

BIN
samples/R.wav Normal file

Binary file not shown.

BIN
samples/S.wav Normal file

Binary file not shown.

BIN
samples/SH.wav Normal file

Binary file not shown.

BIN
samples/T.wav Normal file

Binary file not shown.

BIN
samples/TH.wav Normal file

Binary file not shown.

BIN
samples/UH0.wav Normal file

Binary file not shown.

BIN
samples/UH1.wav Normal file

Binary file not shown.

BIN
samples/UH2.wav Normal file

Binary file not shown.

BIN
samples/UW0.wav Normal file

Binary file not shown.

BIN
samples/UW1.wav Normal file

Binary file not shown.

BIN
samples/UW2.wav Normal file

Binary file not shown.

BIN
samples/V.wav Normal file

Binary file not shown.

BIN
samples/W.wav Normal file

Binary file not shown.

BIN
samples/Y.wav Normal file

Binary file not shown.

BIN
samples/Z.wav Normal file

Binary file not shown.

BIN
samples/ZH.wav Normal file

Binary file not shown.

21
samples/mapping.pl Normal file
View file

@ -0,0 +1,21 @@
#!/usr/bin/env perl
our %mapping = (
"AA" => "AA0",
"AE" => "AE0",
"AH" => "AH0",
"AO" => "AO0",
"AW" => "AW0",
"AY" => "AY0",
"EH" => "EH0",
"ER" => "ER0",
"EY" => "EY0",
"IH" => "IH0",
"IY" => "IY0",
"OW" => "OW0",
"OY" => "OY0",
"UH" => "UH0",
"UW" => "UW0"
);
1;