Skip to content

Commit 498a300

Browse files
committed
speechify instead
1 parent 3a3982d commit 498a300

File tree

3 files changed

+52
-9
lines changed

3 files changed

+52
-9
lines changed

.github/workflows/deploy-ec2.yml

+2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ jobs:
111111
112112
AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }}
113113
AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }}
114+
115+
SPEECHIFY_API_KEY=${{ secrets.SPEECHIFY_API_KEY }}
114116
EOF
115117
116118
# Step 7: Build and push the Docker image

generate/audioGenerator.ts

+12-9
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,38 @@ import fs from 'fs';
33
import dotenv from 'dotenv';
44
dotenv.config();
55

6-
const API_BASE_URL = 'https://api.sws.speechify.com';
6+
const SPEECHIFY_API_URL = 'https://api.sws.speechify.com/v1/audio/speech';
77

88
export async function generateAudio(
99
voice_id: string,
1010
person: string,
1111
line: string,
1212
index: number
1313
) {
14-
const response = await fetch(`${API_BASE_URL}/v1/tts`, {
14+
const response = await fetch(`${SPEECHIFY_API_URL}`, {
1515
method: 'POST',
1616
headers: {
1717
'Content-Type': 'application/json',
18-
'Authorization': `Bearer ${process.env.SPEECHIFY_API_KEY}`,
18+
Authorization: `Bearer ${process.env.SPEECHIFY_API_KEY}`,
1919
},
2020
body: JSON.stringify({
21-
text: line,
21+
input: `<speak>${line}</speak>`,
2222
voice_id: voice_id,
23-
output_format: 'mp3',
24-
sample_rate: 24000,
25-
speed: 1.0
23+
audio_format: 'mp3',
2624
}),
2725
});
2826

2927
if (!response.ok) {
3028
throw new Error(`Server responded with status code ${response.status}`);
3129
}
3230

33-
// Get the audio buffer from the response
34-
const audioBuffer = await response.buffer();
31+
const data = await response.json();
32+
if (!data.audio_data) {
33+
throw new Error('No audio data received from Speechify');
34+
}
35+
36+
// Convert base64 audio data to buffer
37+
const audioBuffer = Buffer.from(data.audio_data, 'base64');
3538

3639
// Write the buffer to a file
3740
fs.writeFileSync(`public/voice/${person}-${index}.mp3`, audioBuffer);

generate/speechifyAudioGenerator.ts

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import fs from 'fs';
2+
3+
const SPEECHIFY_API_URL = 'https://api.sws.speechify.com/v1/audio/speech';
4+
const SPEECHIFY_API_KEY = 'bcBnuV79sIs3NJZ_TEUI0R3FOxPnu-3YoCBRCodvFKY=';
5+
6+
async function generateSpeechifyAudio(text: string): Promise<Buffer> {
7+
console.log('Generating Speechify audio...');
8+
const response = await fetch(SPEECHIFY_API_URL, {
9+
method: 'POST',
10+
headers: {
11+
Authorization: `Bearer ${SPEECHIFY_API_KEY}`,
12+
'Content-Type': 'application/json',
13+
},
14+
body: JSON.stringify({
15+
input: `<speak>${text}</speak>`,
16+
voice_id: '09499a56-f7ba-42f2-996d-c417289c6864',
17+
audio_format: 'mp3',
18+
}),
19+
});
20+
21+
if (!response.ok) {
22+
throw new Error(`Server responded with status code ${response.status}`);
23+
}
24+
25+
const data = await response.json();
26+
if (!data.audio_data) {
27+
throw new Error('No audio data received from Speechify');
28+
}
29+
30+
return Buffer.from(data.audio_data, 'base64');
31+
}
32+
33+
async function main() {
34+
const audio = await generateSpeechifyAudio('Hello, world!');
35+
fs.writeFileSync('output.mp3', new Uint8Array(audio));
36+
}
37+
38+
main();

0 commit comments

Comments
 (0)