Giter Club home page Giter Club logo

cmudict-php's Introduction

CMUDict PHP library

PHP library for work with CMU Pronouncing Dictionary (CMUDict).

With this class you can get the pronunciation of words in the English language, and the approximate transcription in Russian.

In work uses the last version: CMUdict -- Major Version: 0.07a [102007].

Arpabet table is used to convert the phonemes in the transcription.

To obtain an approximate Russian transcription used rules of Anglo-Russian practical transcription.

Note. The basis was taken out of class project is-ottava-rima (unfortunately, it has not been updated since 2012). In fact, it is left unchanged - all the extra functionality is taken in the auxiliary class that extends the base class.

Example of work

Original text:

after twelve long years it should be awesome

Phonemes (Arpabet):

AE F T ER ;; T W EH L V ;; L AO NG ;; Y IH R Z ;; IH T ;; SH UH D ;; B IY ;; AA S AH M

Transcription:

æftɝ twɛɫv ɫɔŋ jɪrz ɪt ʃʊd bi ɑsʌm

Russian transcription:

эфте твэлв лон йирз ит шуд би асам

Sample code

$phrase = 'after twelve long years it should be awesome';

header('Content-Type: text/html; charset=utf-8');
require __DIR__ . '/classes/CMUDict.class.php';
$cmu_dict = CMUDict::get();

echo '<pre>' . $phrase . '</pre>';

$phrase_phoneme = $cmu_dict->getPhoneme($phrase);
echo '<pre>' . print_r($phrase_phoneme, 1) . '</pre>';

$phrase_transcription = $cmu_dict->getTranscription($phrase);
echo '<pre>' . print_r($phrase_transcription, 1) . '</pre>';

$phrase_rus_transcription = $cmu_dict->getRusTranscription($phrase);
echo '<pre>' . print_r($phrase_rus_transcription, 1) . '</pre>';

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.