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

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;