How do I prevent Viber from turning my microphone volume too high?
I am using Linux Mint 17, and I installed Viber to use as an alternative to Skype. I got the Viber client that is available on their website: https://www.viber.com/products/linux/
Whenever I start a Viber call, my microphone volume automatically gets turned to the maximum, and the person I'm calling tells me that my voice sounds robotic. I can manually lower the microphone volume, but I have to do this every time I start a new call.
This never happened in Skype, so it must be a setting in Viber, but I'm unable to change it in Viber.
I'm thinking there must be some way to prevent applications like Viber from doing this, but I don't know how.
Any help?
linux-mint audio voip microphone
add a comment |
I am using Linux Mint 17, and I installed Viber to use as an alternative to Skype. I got the Viber client that is available on their website: https://www.viber.com/products/linux/
Whenever I start a Viber call, my microphone volume automatically gets turned to the maximum, and the person I'm calling tells me that my voice sounds robotic. I can manually lower the microphone volume, but I have to do this every time I start a new call.
This never happened in Skype, so it must be a setting in Viber, but I'm unable to change it in Viber.
I'm thinking there must be some way to prevent applications like Viber from doing this, but I don't know how.
Any help?
linux-mint audio voip microphone
add a comment |
I am using Linux Mint 17, and I installed Viber to use as an alternative to Skype. I got the Viber client that is available on their website: https://www.viber.com/products/linux/
Whenever I start a Viber call, my microphone volume automatically gets turned to the maximum, and the person I'm calling tells me that my voice sounds robotic. I can manually lower the microphone volume, but I have to do this every time I start a new call.
This never happened in Skype, so it must be a setting in Viber, but I'm unable to change it in Viber.
I'm thinking there must be some way to prevent applications like Viber from doing this, but I don't know how.
Any help?
linux-mint audio voip microphone
I am using Linux Mint 17, and I installed Viber to use as an alternative to Skype. I got the Viber client that is available on their website: https://www.viber.com/products/linux/
Whenever I start a Viber call, my microphone volume automatically gets turned to the maximum, and the person I'm calling tells me that my voice sounds robotic. I can manually lower the microphone volume, but I have to do this every time I start a new call.
This never happened in Skype, so it must be a setting in Viber, but I'm unable to change it in Viber.
I'm thinking there must be some way to prevent applications like Viber from doing this, but I don't know how.
Any help?
linux-mint audio voip microphone
linux-mint audio voip microphone
asked Nov 22 '17 at 0:36
DomDom
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Question is a bit old but I had the same problem and finally figured out the solution. I'm also on Linux Mint, version 19 though.
In the home folder, Viber creates a settings database, ~/.ViberPC/config.db - it's just an SQLite3 database. I used SQLiteStudio to edit it.
There's a table called DefaultSettings, which by default is blank. I added a row. The ID is constrained to a foreign key which is basically the phone number you signed up to Viber with (you can get it from the Accounts table). The CodecID will probably be 0, you can get it from the VideoCodecPreferences table. The UnmuteSpeakers and AutoAcceptVideo are 1 or 0, as you prefer. InputVolumeLevel is the one that bothers you with your microphone - you will have to experiment to find a comfortable level here, I started off with about 50 and worked from there. OutputVolumeLevel is similar.
Save the database, restart Viber, and you should be good to go.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f406163%2fhow-do-i-prevent-viber-from-turning-my-microphone-volume-too-high%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Question is a bit old but I had the same problem and finally figured out the solution. I'm also on Linux Mint, version 19 though.
In the home folder, Viber creates a settings database, ~/.ViberPC/config.db - it's just an SQLite3 database. I used SQLiteStudio to edit it.
There's a table called DefaultSettings, which by default is blank. I added a row. The ID is constrained to a foreign key which is basically the phone number you signed up to Viber with (you can get it from the Accounts table). The CodecID will probably be 0, you can get it from the VideoCodecPreferences table. The UnmuteSpeakers and AutoAcceptVideo are 1 or 0, as you prefer. InputVolumeLevel is the one that bothers you with your microphone - you will have to experiment to find a comfortable level here, I started off with about 50 and worked from there. OutputVolumeLevel is similar.
Save the database, restart Viber, and you should be good to go.
New contributor
add a comment |
Question is a bit old but I had the same problem and finally figured out the solution. I'm also on Linux Mint, version 19 though.
In the home folder, Viber creates a settings database, ~/.ViberPC/config.db - it's just an SQLite3 database. I used SQLiteStudio to edit it.
There's a table called DefaultSettings, which by default is blank. I added a row. The ID is constrained to a foreign key which is basically the phone number you signed up to Viber with (you can get it from the Accounts table). The CodecID will probably be 0, you can get it from the VideoCodecPreferences table. The UnmuteSpeakers and AutoAcceptVideo are 1 or 0, as you prefer. InputVolumeLevel is the one that bothers you with your microphone - you will have to experiment to find a comfortable level here, I started off with about 50 and worked from there. OutputVolumeLevel is similar.
Save the database, restart Viber, and you should be good to go.
New contributor
add a comment |
Question is a bit old but I had the same problem and finally figured out the solution. I'm also on Linux Mint, version 19 though.
In the home folder, Viber creates a settings database, ~/.ViberPC/config.db - it's just an SQLite3 database. I used SQLiteStudio to edit it.
There's a table called DefaultSettings, which by default is blank. I added a row. The ID is constrained to a foreign key which is basically the phone number you signed up to Viber with (you can get it from the Accounts table). The CodecID will probably be 0, you can get it from the VideoCodecPreferences table. The UnmuteSpeakers and AutoAcceptVideo are 1 or 0, as you prefer. InputVolumeLevel is the one that bothers you with your microphone - you will have to experiment to find a comfortable level here, I started off with about 50 and worked from there. OutputVolumeLevel is similar.
Save the database, restart Viber, and you should be good to go.
New contributor
Question is a bit old but I had the same problem and finally figured out the solution. I'm also on Linux Mint, version 19 though.
In the home folder, Viber creates a settings database, ~/.ViberPC/config.db - it's just an SQLite3 database. I used SQLiteStudio to edit it.
There's a table called DefaultSettings, which by default is blank. I added a row. The ID is constrained to a foreign key which is basically the phone number you signed up to Viber with (you can get it from the Accounts table). The CodecID will probably be 0, you can get it from the VideoCodecPreferences table. The UnmuteSpeakers and AutoAcceptVideo are 1 or 0, as you prefer. InputVolumeLevel is the one that bothers you with your microphone - you will have to experiment to find a comfortable level here, I started off with about 50 and worked from there. OutputVolumeLevel is similar.
Save the database, restart Viber, and you should be good to go.
New contributor
New contributor
answered Jan 8 at 17:01
James SmithJames Smith
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f406163%2fhow-do-i-prevent-viber-from-turning-my-microphone-volume-too-high%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown