-
Notifications
You must be signed in to change notification settings - Fork 9
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
[Feature Request] Change the sound.wav that plays when enabling the setting Beep Quoting You and allow to adjust the volume of the Sound Played #103
Comments
Released in 2.14.0. |
<input type="file" id="audioFileInput" accept=".wav, .mp3" />
<p id="base64Output"></p>
<script>
document.getElementById('audioFileInput').addEventListener('change', function(event) {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
// This will be called when the file is read as a data URL (base64)
reader.onload = function(e) {
const base64String = e.target.result;
document.getElementById('base64Output').textContent = base64String;
};
// Read the file as a Data URL
reader.readAsDataURL(file);
} else {
alert('Please upload a valid WAV or MP3 file.');
}
});
</script> |
No, the audio gives an error on an invalid volume, and the initial 100 is invalid. I fixed that in 2.14.1.
It is ment to do that, but the audio wasn't initialised in the index or catalog.
I set the minimum to .01 because the volume input is not ment to turn the sound off completely. The reason other values can be typed in is because invalid values aren't validated until a submit event or until it's done manually, which doesn't happen in the settings modal.
Any URL the browser supports as audio.
Not a bad Idea. |
I was reminded of this old thread: ccd0#950
It's really loud and very typical, I'd like to change it to something else, but at the very least lower its volume to make watching videos in the same browser more feasible. Since this is the actively developed fork. I'd figured I open a ticket. Feel free to ignore it. After all I'm asking for a favor.
The text was updated successfully, but these errors were encountered: