2 Answers
- Newest
- Most votes
- Most comments
1
From the Optimize Your Streaming Audio documentation of Amazon Polly, the sample rate impact the bandwidth and audio quality for your experience.
The Amazon Polly has default sample rate of 16000. If you have specific sample rate or quality requirement, the detail of StartSpeechSynthesisTask
API to create an asynchronous synthesis task can be found here.
If the audio file sample rate meets your requirement, then you may check your audio system on the device as the second step.
answered 2 years ago
0
This is a strange one, I recommend trying the MP3 file on another device to see if you have the same problem. If not maybe check the app or codec you're using to play the MP3?
answered 2 years ago
Relevant content
- asked 2 years ago
- asked 3 years ago
- asked 2 months ago
- AWS OFFICIALUpdated 4 years ago
- How do I set up logging for Amazon Pinpoint voice messages for Amazon Pinpoint SMS and Voice v1 API?AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 3 years ago
Thank you both for your suggestions, they put me on the right path to solving this. I think the problem was that I have an audio interface (which, in effect replaces the computer's sound card) hooked up so I can use my DAW. The sample rate for the interface is 44100 Hz which doesn't match up with Polly's sample rate of 16000 Hz. So when I play the mp3 through Windows Media Player or Groove Music there is a lot of static and it plays out of only one side of the headphones. However, when I play the mp3 within an application that uses my audio interface, the sample sounds perfectly fine and plays out of both headphones. Since I just need the samples to work within my applications, i.e. Video Editor and DAW, I'm good to go. Thanks again for your help.