Spaces:
Sleeping
Sleeping
File size: 1,227 Bytes
7bc29af |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
from pedalboard import Pedalboard, Compressor, Reverb, NoiseGate
from pedalboard.io import AudioFile
import sys
import os
now_dir = os.getcwd()
sys.path.append(now_dir)
from i18n import I18nAuto
i18n = I18nAuto()
from pydub import AudioSegment
import numpy as np
import soundfile as sf
from pydub.playback import play
def process_audio(input_path, output_path, reverb_enabled, compressor_enabled, noise_gate_enabled, ):
print(reverb_enabled)
print(compressor_enabled)
print(noise_gate_enabled)
effects = []
if reverb_enabled:
effects.append(Reverb(room_size=0.01))
if compressor_enabled:
effects.append(Compressor(threshold_db=-10, ratio=25))
if noise_gate_enabled:
effects.append(NoiseGate(threshold_db=-16, ratio=1.5, release_ms=250))
board = Pedalboard(effects)
with AudioFile(input_path) as f:
with AudioFile(output_path, 'w', f.samplerate, f.num_channels) as o:
while f.tell() < f.frames:
chunk = f.read(f.samplerate)
effected = board(chunk, f.samplerate, reset=False)
o.write(effected)
result = i18n("Processed audio saved at: ") + output_path
print(result)
return output_path |