Skip to content

Commit 955272f

Browse files
committed
tweaks for #6, bleep instead of mute
1 parent 438d11d commit 955272f

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ options:
8484
-h <int>, --beep-hertz <int>
8585
Beep frequency hertz (default: 1000)
8686
--beep-mix-normalize [true|false]
87-
Normalize mix of audio and beeps (default: True)
87+
Normalize mix of audio and beeps (default: False)
8888
--beep-audio-weight <int>
89-
Mix weight for non-beeped audio (default: 4)
89+
Mix weight for non-beeped audio (default: 1)
9090
--beep-sine-weight <int>
9191
Mix weight for beep (default: 1)
9292
--beep-dropout-transition <int>

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = monkeyplug
3-
version = 2.1.2
3+
version = 2.1.3
44
author = Seth Grover
55
author_email = mero.mero.guero@gmail.com
66
description = monkeyplug is a little script to censor profanity in audio files.

src/monkeyplug/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""monkeyplug is a little script to censor profanity in audio files."""
22

3-
__version__ = "2.1.2"
3+
__version__ = "2.1.3"
44
__author__ = "Seth Grover <mero.mero.guero@gmail.com>"
55
__all__ = []
66

src/monkeyplug/monkeyplug.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
AUDIO_INTERMEDIATE_PARAMS = ["-c:a", "pcm_s16le", "-ac", "1", "-ar", "16000"]
4545
AUDIO_DEFAULT_WAV_FRAMES_CHUNK = 8000
4646
BEEP_HERTZ_DEFAULT = 1000
47-
BEEP_MIX_NORMALIZE_DEFAULT = True
48-
BEEP_AUDIO_WEIGHT_DEFAULT = 4
47+
BEEP_MIX_NORMALIZE_DEFAULT = False
48+
BEEP_AUDIO_WEIGHT_DEFAULT = 1
4949
BEEP_SINE_WEIGHT_DEFAULT = 1
5050
BEEP_DROPOUT_TRANSITION_DEFAULT = 0
5151
SWEARS_FILENAME_DEFAULT = 'swears.txt'

0 commit comments

Comments
 (0)