mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
voice: Shorten silence threshold to 250ms (from 500ms)
Change-Id: I32ef8691f9e0adad1af4fce3c167cfcd950ca120
This commit is contained in:
parent
f95427c081
commit
2dddf16e2c
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
# Copyright (C) 2007 Jonas Häggqvist
|
# Copyright (C) 2007 Jonas Häggqvist
|
||||||
|
# Copyright (C) 2020 Solomon Peachy
|
||||||
#
|
#
|
||||||
# All files in this archive are subject to the GNU General Public License.
|
# All files in this archive are subject to the GNU General Public License.
|
||||||
# See the file COPYING in the source tree root for full license agreement.
|
# See the file COPYING in the source tree root for full license agreement.
|
||||||
|
@ -162,7 +163,7 @@ my %piper_lang_map = (
|
||||||
'turkce' => 'tr_TR-fettah-medium.onnx',
|
'turkce' => 'tr_TR-fettah-medium.onnx',
|
||||||
);
|
);
|
||||||
|
|
||||||
my $trim_thresh = 500; # Trim silence if over this, in ms
|
my $trim_thresh = 250; # Trim silence if over this, in ms
|
||||||
my $force = 0; # Don't regenerate files already present
|
my $force = 0; # Don't regenerate files already present
|
||||||
|
|
||||||
# Initialize TTS engine. May return an object or value which will be passed
|
# Initialize TTS engine. May return an object or value which will be passed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue