First of all, i have lot of text available. Let's say, i have 10000 characters for each try. The script is php based, but i can use whatever i want. C++, java, no problem.

The google language api can't be used: their usage limits are to low.

I'ts 6 hours that i try to come out with anything great, but none for now. Can someone point me to my best chance?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Java based tools are :

Apache Tika : not "all" language profiles, but you can add them yourself

public String detectLangTika(String text) throws SystemException {
    LanguageIdentifier li = new LanguageIdentifier(text);
    if (li.isReasonablyCertain())
        return li.getLanguage();
    else
        throw new Exception("Tika lang detection not reasonably certain");
}

language-detection : A lot of language profiles, works great for me.

    DetectorFactory.loadProfile(new File(LangDetector.class.getClassLoader().getResource("profiles").toURI()));

public String detectLangLD(String text) throws SystemException {

    Detector detector;
    String lang;
    try {
        detector = DetectorFactory.create();
        detector.append(text);
        lang = detector.detect();
    } catch (LangDetectException e) {
        throw new SystemException("LangDetector Failure", e);
    }
    return lang;
}

The most precise tool is Google API lang detection, though I'm not sure how long it will exist. You just code a light httpclient.

link|improve this answer
feedback

If you are willing to give python a go...take a look at nltk. And I hope you did go through this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.