Skip to content
Snippets Groups Projects
Commit a2398abd authored by Chris Pastl's avatar Chris Pastl
Browse files

Merge branch 'fix-config-fade_time' into 'main'

Fix: config var nesting for fade_in_time

See merge request !25
parents badd87b3 759cfca3
Branches
Tags
1 merge request!25Fix: config var nesting for fade_in_time
Checking pipeline status
......@@ -122,6 +122,5 @@ scheduler:
buffer: 3.0
# Fade duration when selecting another mixer input (seconds)
fade:
in_time: ${AURA_ENGINE_FADE_IN_TIME}
out_time: ${AURA_ENGINE_FADE_OUT_TIME}
fade_in_time: ${AURA_ENGINE_FADE_IN_TIME}
fade_out_time: ${AURA_ENGINE_FADE_OUT_TIME}
......@@ -123,6 +123,5 @@ scheduler:
buffer: 3.0
# Fade duration when selecting another mixer input (seconds)
fade:
in_time: 1.5
out_time: 1.5
fade_in_time: 1.5
fade_out_time: 1.5
......@@ -86,7 +86,8 @@ template = {
"scheduling_window_end": int,
"preload_offset": int,
"input_stream": {"retry_delay": int, "max_retries": int, "buffer": float},
"fade": {"in_time": float, "out_time": float},
"fade_in_time": float,
"fade_out_time": float,
},
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment