Python 和 Java 中的拼音拼写

发布于 2024-12-18 08:49:24 字数 1536 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

倒数 2024-12-25 08:49:24

我遇到了一个旧的 python 包 Raze。它包括一个带有翻译 api 的语音模块:

>>> pd = PhoneticDictionary()
>>> pd.spell('Hello world')
... hotel-echo-lima-lima-oscar whiskey-oscar-romeo-lima-delta

它已经有一段时间没有更新了,但它仍然可以工作。

I came across an old python package Raze. It includes a phonetic module with a translation api:

>>> pd = PhoneticDictionary()
>>> pd.spell('Hello world')
... hotel-echo-lima-lima-oscar whiskey-oscar-romeo-lima-delta

It hasn't been updated in a while, but it still works.

与他有关 2024-12-25 08:49:24

您是否正在寻找类似于国际音标 (IPA) 或其他语音输出的内容?如果 ARPAbet 可以的话,还有 CMU 发音词典 (http://www.speech.cs.cmu.edu/cgi-bin/cmudict)。这将给出大多数英语单词的 ARPAbet 翻译。我已经编写了一些代码,可以将 ARPAbet 拼写转换为 IPA,如果您愿意,可以将其发布到 github。

Are you looking for something akin to the international phonetic alphabet (IPA) or some other phonetic output? If ARPAbet is ok, there is the CMU pronouncing dictionary (http://www.speech.cs.cmu.edu/cgi-bin/cmudict). That'll give the ARPAbet rendering of most words in English. I've written some code that converts the ARPAbet spelling to IPA and post to github if you'd like.

另类 2024-12-25 08:49:24

试试这个: http://texttophonetic.appspot.com/

这个工具可以帮助您将英语翻译成 IPA (为拼音)。您可能需要编写一些代码来获取结果,然后将其保存到数据库中。

Just try this : http://texttophonetic.appspot.com/

This tool can help you translate english to IPA (to phonetic). You might want to write some code to get the result then save to your database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文