I want to convert the Live speech of the user to text using AWS Transcribe API. For some reason, there is no proper documentation on how it is to be done in android. This is the link to do it in an inefficient manner Speech to text by AWS service using Java API In this link, the solution is to get the audio file from the user, store it to the S3, and then convert it using transcribe and wait for it to get complete till around few minutes and store it back to the S3.
I want to do it without storing file to S3, converting it, again store the output file to S3. How can I do it ?