Skip to content

Commit

Permalink
4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Captain-FLAM committed Oct 17, 2023
1 parent bd921b3 commit 9ea34cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/audio_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def Silent(audio_in, sample_rate, threshold_db = -50):

min_size = int(0.500 * sample_rate) # 500 ms
window_frame = int(0.010 * sample_rate) # 10 ms
fade_duration = int(0.100 * sample_rate) # 100 ms
fade_duration = int(0.400 * sample_rate) # 400 ms
fade_out = np.linspace(1.0, 0.0, fade_duration)
fade_in = np.linspace(0.0, 1.0, fade_duration)

Expand Down

0 comments on commit 9ea34cc

Please sign in to comment.