mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Return empty array for speechmarks for realistic voices
This commit is contained in:
parent
718f6716bc
commit
55ad5ec6f5
2 changed files with 2 additions and 1 deletions
|
|
@ -76,6 +76,7 @@ export class RealisticTextToSpeech implements TextToSpeech {
|
|||
|
||||
return {
|
||||
audioData,
|
||||
speechMarks: [],
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export interface TextToSpeechInput {
|
|||
|
||||
export interface TextToSpeechOutput {
|
||||
audioData?: Buffer
|
||||
speechMarks?: SpeechMark[]
|
||||
speechMarks: SpeechMark[]
|
||||
}
|
||||
|
||||
export interface SpeechMark {
|
||||
|
|
|
|||
Loading…
Reference in a new issue