Google api 语音到文本google服务所需的自定义格式化程序

Google api 语音到文本google服务所需的自定义格式化程序,google-api,google-speech-to-text-api,Google Api,Google Speech To Text Api,在这个项目中,我们使用的是谷歌服务 一方面,它带来了许多优势,简化了音频处理,另一方面,我们注意特殊的数据格式,例如: 字段类型:货币 Current Output : no payment due Expected Output : $0 Current Output : no outstanding balance Expected Output : $0 字段类型:日期 Current Output : May 1st 2020 Expected Output : 05/01/2020

在这个项目中,我们使用的是谷歌服务

一方面,它带来了许多优势,简化了音频处理,另一方面,我们注意特殊的数据格式,例如:

字段类型:货币

Current Output : no payment due
Expected Output : $0

Current Output : no outstanding balance
Expected Output : $0
字段类型:日期

Current Output : May 1st 2020
Expected Output : 05/01/2020

Current Output : May 1st 2020.
Expected Output : 05/01/2020

Current Output : June 1st 2020.
Expected Output : 06/01/2020

Current Output : March 13th.
Expected Output : 03/13/2020 (automatically infer the year)
我们已经尝试过查看,但这种方法并没有提供满足我们需求的工具。 我们已经检查了几次API,研究行为-结果仍然相同。 我相信我们错过了一些东西,希望得到社区的帮助

附笔。 我们的项目语言是
java
,我们相信在这个问题的范围内,它并不重要