mirror of
https://github.com/lox-audioserver/lox-audioserver.git
synced 2026-04-26 06:45:47 +03:00
[GH-ISSUE #36] Function block input: Ft (Volume Fading Time) #12
Labels
No labels
bug
enhancement
pull-request
released
released on @beta
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lox-audioserver#12
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mr-manuel on GitHub (Oct 12, 2025).
Original GitHub issue: https://github.com/lox-audioserver/lox-audioserver/issues/36
Would be nice, if this can be implemented. This would allow to slowly increase the buzzer volume, when the buzzer starts playing and waking up would be more smoothly.
@rudyberends commented on GitHub (Oct 16, 2025):
That should be quite doable.
When the Ft (Volume Fading Time) parameter is set on the player block, the Miniserver already sends a similar command when the buzzer is triggered:
audio/grouped/buzzer/38/?q&ZmFkaW5nJmZhZGluZ1RpbWU9MTIwThe text after the ? is a Base64-encoded string that decodes to:
fading&fadingTime=120This means we already receive the fade time value.
We can easily use this fadingTime parameter to gradually increase the buzzer volume over the defined duration, resulting in a smoother fade-in effect when the buzzer starts playing.
@rudyberends commented on GitHub (Nov 1, 2025):
This should now work in the latest 3.0.0 release. Please start with a fresh config and let me know the results.
@mr-manuel commented on GitHub (Nov 1, 2025):
Works nicely, thanks!