Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default values for fade out type and autocue loudness target #4188

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libs/autocue.liq
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ let settings.autocue.internal.lufs_target =
settings.make(
description=
"Loudness target",
-16.0
-14.0
)

let settings.autocue.internal.cue_in_threshold =
Expand Down
4 changes: 2 additions & 2 deletions src/libs/fades.liq
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ let settings.fade.out.type =
settings.make(
description=
"Default fade.out type",
"exp"
"lin"
)

let settings.fade.out.curve =
settings.make(
description=
"Default fade.out curve",
3.
10.
)

# Make a fade function based on a source's clock.
Expand Down
Loading