Skip to content
Extraits de code Groupes Projets
Valider 37cc0374 rédigé par Sting's avatar Sting
Parcourir les fichiers

Add Finnish and Danish support

parent 6a1a8377
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -24,6 +24,10 @@ class G2p_Wrapper():
self.transducer = g2p_en.G2p()
elif language == "fr":
self.transducer = make_g2p('fra', 'eng-arpabet')
elif language == "fi":
self.transducer = make_g2p('fin', 'eng-arpabet')
elif language == "da":
self.transducer = make_g2p('dan', 'eng-arpabet')
else: # Only Japanese Romaji for now...
self.transducer = make_g2p('rji', 'rji-eng-arpa')
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter