最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to parse Azure TTS streaming text input response with websocket? - Stack Overflow

programmeradmin1浏览0评论

I want to use this feature to build my app, but since I'm coding with JS and there is no streaming text input in JS sdk, so I'm tring to made it on my own, I find some way to get the response from the Azure service, it looks like:

X-RequestId:0db80383ac5d418397fc63f49be940a9
Content-Type:application/json; charset=utf-8
Path:response

{"context":{"serviceTag":.....
X-RequestId:0db80383ac5d418397fc63f49be940a9
Content-Type:audio/mpeg
X-StreamId:BD89C03A20734E14BD8E12EDCEA7A129
Path:audio
[binary content]
...other chunks

Then I tried to write all Path:audio chunks binary content body to a file, but the file can not open with audio player.

What should I do with these response chunks?

I want to use this feature to build my app, but since I'm coding with JS and there is no streaming text input in JS sdk, so I'm tring to made it on my own, I find some way to get the response from the Azure service, it looks like:

X-RequestId:0db80383ac5d418397fc63f49be940a9
Content-Type:application/json; charset=utf-8
Path:response

{"context":{"serviceTag":.....
X-RequestId:0db80383ac5d418397fc63f49be940a9
Content-Type:audio/mpeg
X-StreamId:BD89C03A20734E14BD8E12EDCEA7A129
Path:audio
[binary content]
...other chunks

Then I tried to write all Path:audio chunks binary content body to a file, but the file can not open with audio player.

What should I do with these response chunks?

Share Improve this question asked yesterday xiaoyuxiaoyu 335 bronze badges 7
  • 1 Extract binary data after \r\n\r\n, concatenate all chunks, and save as a single file. – Dasari Kamali Commented yesterday
  • @DasariKamali The binary content in Content-Type:audio/mpeg chunks is not after \r\n\r\n but \r\n, this is not the key point anyway. I pick the binary content after \r\n and write them into one file still not working.
发布评论

评论列表(0)

  1. 暂无评论