-
Notifications
You must be signed in to change notification settings - Fork 461
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
New setting "streaming_client.initial_volume" #1024
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,11 @@ source = pipe:///tmp/snapfifo?name=default | |
# Send audio to muted clients | ||
#send_to_muted = false | ||
# | ||
|
||
# Volume assigned to new snapclients [percent] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please create a new config section Also please rename the setting to
|
||
# Defaults to 100 if unset | ||
#initial_client_percent = 100 | ||
# | ||
############################################################################### | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,7 @@ struct ServerSettings | |
size_t streamChunkMs{20}; | ||
bool sendAudioToMutedClients{false}; | ||
std::vector<std::string> bind_to_address{{"0.0.0.0"}}; | ||
uint16_t initialClientPercent{100}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a new struct |
||
}; | ||
|
||
struct Logging | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change according to the requested changes for
server/etc/snapserver.conf
(below).