mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-13 01:41:59 -04:00
Adjust default values to match orca's defaults.
Use Rate of 50, Pitch of 5, and volume of 10.
This commit is contained in:
parent
7d838ae6f6
commit
0c28ed2b30
1 changed files with 3 additions and 3 deletions
|
@ -29,9 +29,9 @@ const RATE_SETTING: &str = "rate";
|
||||||
const VOLUME_SETTING: &str = "gain";
|
const VOLUME_SETTING: &str = "gain";
|
||||||
const ENABLE_SETTING: &str = "enableSpeech";
|
const ENABLE_SETTING: &str = "enableSpeech";
|
||||||
|
|
||||||
const PITCH_DEFAULT: f64 = 1.0;
|
const PITCH_DEFAULT: f64 = 5.0;
|
||||||
const RATE_DEFAULT: f64 = 1.0;
|
const RATE_DEFAULT: f64 = 50.0;
|
||||||
const VOLUME_DEFAULT: f64 = 1.0;
|
const VOLUME_DEFAULT: f64 = 10.0;
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
static ref VALID_SETTINGS: HashMap<&'static str, RangeInclusive<f64>> = HashMap::from_iter([
|
static ref VALID_SETTINGS: HashMap<&'static str, RangeInclusive<f64>> = HashMap::from_iter([
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue