多种语言的语音转文本
我已经成功完全实现了 ispeech API,请参阅我的应用程序的 http://www.ispeech.org/developers将语音转换为文本(请参阅 sdk 中的演示应用程序 http://www.ispeech.org/instructions/sampleprojects/iphone/IntegrationGuide.html)。但不幸的是,它只将我们所说的英语翻译成文本。
我需要什么。
有一个“说话”按钮,可以监听用户所说的内容并将其转换为文本(对于英语来说效果很好)。还有另一个按钮,允许用户选择语言,如本应用程序屏幕截图所示( http://screencast.com/t/ 7vBFH565qD)。因此,当用户使用所选语言说话时,它应该转换为相同的语言。就我而言,无论我们说什么,都只需要英语输入..
谢谢大家..
i have success fully implemented the ispeech API see http://www.ispeech.org/developers for my app to convert speech to text(see the demo app in the sdk http://www.ispeech.org/instructions/sampleprojects/iphone/IntegrationGuide.html). But unfortunately it takes what we speak as only in english and translte it to text.
what i need.
There is a "speak" button that listens what the user spokes and convert it to text(that works fine for english). Also another button that allows the user to select a language as seen in this appscreenshot( http://screencast.com/t/7vBFH565qD). So when the user speaks in the selected language it should get converted to the same language. In my case whatever we speak it takes the input only in english..
Thanks all..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iSpeech 还支持更多语言,您可以在此处找到其相应区域设置标识符的列表:
http://www.ispeech.org/api
要设置新语言,您可以使用“ISpeechSetLocale”方法
[_iSpeech ISpeechSetLocale:@"fr-FR"];
http://www.ispeech.org/developer/iframe?src=/iphonesdkdoc/
iSpeech also supports more languages, you can find the list with their corresponding locale identifiers here:
http://www.ispeech.org/api
To set a new language you have the "ISpeechSetLocale" method
[_iSpeech ISpeechSetLocale:@"fr-FR"];
http://www.ispeech.org/developer/iframe?src=/iphonesdkdoc/
为什么不能使用支持多种语言的语音转文本的 NUANCE API。请参阅以下链接并在那里注册以使用他们的 iOS sdk 。
http://dragonmobile.nuancemobiledeveloper.com/public/index.php?task=supportedLanguages
Why cant you use the NUANCE API which supports speech to text in multiple languages. see the following link and register there to use their iOS sdk .
http://dragonmobile.nuancemobiledeveloper.com/public/index.php?task=supportedLanguages