admin管理员组

文章数量:1344514

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.

    本文标签: How to parse Azure TTS streaming text input response with websocketStack Overflow