Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
62 views

MySQL is too smart about accented characters

I guess, normally people would be aiming to make their programme behave like this, but in my case this is completely opposite from what I want. Somehow, my MySQL database is able to read different ...
3
votes
5answers
896 views

How to convert Chinese characters to Pinyin

For sorting Chinese language text, I want to convert Chinese characters to Pinyin, properly separating each Chinese character and grouping successive characters together. Can you please help me in ...
3
votes
3answers
536 views

Convert chinese characters to hanyu pinyin

Suggestions of software libraries which are able to convert from chinese characters to hanyu pinyin please? E.g. 你 --> Nǐ 马 --> Mǎ More Info: Either accents or numerical forms of hanyu pinyin ...
2
votes
2answers
476 views

Convert Chinese Pinyin with accents to numerical form

I'm looking to convert Pinyin where the tone marks are written with accents (e.g.: Nín hǎo) to Pinyin written in numerical/ASCII form (e.g.: Nin2 hao1). Does anyone know of any libraries for this, ...
1
vote
0answers
35 views

TTS Class: How to TTS chinese Pinyin?

Is there a way to TTS output Pinyin via the tts class (in the correct tone)? I tried SVOX and Pico... I have a database where different words are stored in a form like Ni3 Hao3 I tried: - Ni3Hao3 ...
1
vote
0answers
41 views

Python CJKLIB: no pinyin tones

I'm working with CJKLIB, using the getReadingForCharacter, to convert Chinese characters into pinyin. However, is there some way readings = cjk.getReadingForCharacter(c, 'Pinyin') The problem is ...
1
vote
1answer
83 views

MySQL Chinese pinyin encoding issue

I have a mysql database set to utf8. My charset/collation variables are: Variable_name Value character_set_client utf8 character_set_connection utf8 character_set_database utf8 ...
1
vote
1answer
128 views

Pinyin tone marked symbols and MySQL

I’m creating a MySQL database storing Chinese characters with associated pīnyīn pronunciations. I’ve set up everything to work in UTF-8 charset, so I’m having no troubles with most of the symbols I’m ...
1
vote
1answer
110 views

Any libraries to convert number pinyin to pinyin with tone markings?

Just wondering if anyone knows of a class library that can convert chinese pinyin to ones with tones Like this nin2 hao3 ma to nín hǎo ma similar to this answer, but in .NET Convert numbered to ...
1
vote
0answers
82 views

English-Chinese Searchable Dictionary; how to search for accentuated pinyin using english alphabets

Following examples given in Android SDK samples, I have created English-Chinese dictionary. As i am a foreign student studying in China, my basic requirement is to be able to search for pinyin, ...
0
votes
1answer
214 views

Python: convert Chinese characters into pinyin with CJKLIB

I'm trying to convert a bunch of Chinese characters into pinyin, reading the characters from one file and writing the pinyin into another. I'm working with the CJKLIB functions to do this. Here's ...
0
votes
1answer
153 views

Latin<->Han Conversion in ICU?

I am just getting started implementing ICU transforms using ICU4C in a C++ program. I am particularly looking at transliteration to and from Chinese. According to this document, the package ...
0
votes
2answers
206 views

portable way to sort column according to chinese pinyin in rails

Is there a portable way to sort columns according to Chinese pinyin (汉语拼音) in rails using either Activerecord or standard SQL statement, regardless of the underlying database configuration. If this is ...