main.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phonetictranscriber Show documentation
Show all versions of phonetictranscriber Show documentation
Generation of phonetic pronounciation transcription for Latvian words
The newest version!
package main;
import phonetic_transcriber.PhoneticTranscriber;
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
/*
* TODO uzrakstīt main wrapperi
*/
PhoneticTranscriber transcriber= new PhoneticTranscriber("_", null);
try {
transcriber.transcribeFile("words.txt", "words.txt.transcribed");
} catch (Exception e) {
e.printStackTrace();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy