Skip to content

Commit

Permalink
Fix rate parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
LitoMore committed May 17, 2024
1 parent ef77a5c commit a2af87e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function say(text: string, options: SayOptions = {}) {
[
text,
voice && ['--voice', voice],
rate && ['--rate', 'rate'],
rate && ['--rate', rate],
audioDevice && ['--audio-device', audioDevice],
quality && ['--quality', quality],
inputFile && ['--input-file', inputFile],
Expand Down

0 comments on commit a2af87e

Please sign in to comment.