Skip to content

Commit 8ce56bd

Browse files
committed
tts more silence at the end
1 parent fcb6584 commit 8ce56bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

otherarch/tts_adapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ tts_generation_outputs ttstype_generate(const tts_generation_inputs inputs)
976976
audio[i] = 0.0f;
977977
}
978978
//add some silence at the end
979-
for (int i = 0; i < cutout; ++i) {
979+
for (int i = 0; i < cutout*2; ++i) {
980980
audio.push_back(0.0f);
981981
}
982982
}

0 commit comments

Comments
 (0)