Reputation: 51
I've been developing a Text-to-Speech app with Azure SDK and according to reference page below
there seems to be only mono output formats available and it is not possible to create audio files in stereo format, correct? If there's anyone familiar with this, please help me out with your answer.
Thank you in advance for your help.
Upvotes: 1
Views: 749
Reputation: 474
As per Azure cognitive services base documentation there are nearly 20 different types of audio output types, we can get using Azure SDK using REST API.
All those outputs are mono type only. Not stereo type.
By default, azure SDK using REST API is providing mono format of audio. That is single channel output.
Upvotes: 1