Skip to content
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

Update dsp.py #240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion utils/dsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import librosa
from utils import hparams as hp
from scipy.signal import lfilter
import soundfile as sf


def label_2_float(x, bits):
Expand All @@ -20,7 +21,7 @@ def load_wav(path):


def save_wav(x, path):
librosa.output.write_wav(path, x.astype(np.float32), sr=hp.sample_rate)
sf.write(path, x.astype(np.float32), hp.sample_rate)


def split_signal(x):
Expand Down