-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpolly.ts
35 lines (28 loc) · 971 Bytes
/
polly.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import Polly = require('../clients/polly');
const client: Polly = new Polly(<Polly.ClientConfiguration>{
signatureVersion: 'v4',
region: 'us-east-1'
});
const params: Polly.SynthesizeSpeechInput = {
Text: 'foo',
OutputFormat: 'mp3',
VoiceId: 'Kimberly'
};
client.synthesizeSpeech(params, (err, data) => {
if (err) {
console.log(err.code);
} else if (data) {
if (data.AudioStream instanceof Buffer) {
console.log(data.AudioStream.toString());
}
}
});
var presigner: Polly.Presigner = new Polly.Presigner(<Polly.Presigner.PresignerOptions>{
service: client
});
var params2: Polly.Presigner.GetSynthesizeSpeechUrlInput = params;
const url = presigner.getSynthesizeSpeechUrl(params2);
console.log(url.length);
presigner.getSynthesizeSpeechUrl(params, (err, url) => {});
presigner.getSynthesizeSpeechUrl(params, 1000, (err, url) => {});
const url2 = presigner.getSynthesizeSpeechUrl(params, 100);