|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1042 ] | MBROLA Project Development Team |
|---|---|
| Organisation name | MBROLA Project Development Team |
| Short name or acronym | MBROLA Project Development Team |
| Organisation type | Center |
| Activity type | Speech technology |
| Address | Faculte Polytechnique de Mons, TCTS Lab, 31, bvd Dolez |
| Postal Code | B-7000 |
| City | Mons |
| Country | Belgium |
| Phone | + +32 65 374733 |
| Fax | + +32 65 374729 |
| mbrola_(on)_tcts.fpms.ac.be | |
| Organisation URL | http://tcts.fpms.ac.be/synthesis/mbrola.html |
| Logo | Description |
![]() |
The aim of the MBROLA project, initiated by the TCTS Lab of the Faculté Polytechnique de Mons (Belgium), is to obtain a set of speech synthesizers for as many languages as possible, and provide them free for non-commercial applications. The ultimate goal is to boost academic research on speech synthesis, and particularly on prosody generation, known as one of the biggest challenges taken up by Text-To-Speech synthesizers for the years to come. Sources for following languages are available with Mbrola: breton,croatian,czech,dutch,english, estonian,french, german,greek,korean,hebrew,indonesian,hindi,italian,japanese, portuguese,romanian,spanish,swedish,telugu,turkish |
| Contact | |
| Name | |
| Function | |
| Department | |
| Phone | + |
| Fax | + |
|
|
Last update: 2002-04-15 14:38:25 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |