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

Stereo reverb would be much better #114

Open
Jqliany opened this issue Mar 13, 2024 · 1 comment
Open

Stereo reverb would be much better #114

Jqliany opened this issue Mar 13, 2024 · 1 comment

Comments

@Jqliany
Copy link

Jqliany commented Mar 13, 2024

def add_audio_effects():
......
    with AudioFile(audio_path) as f:
        with AudioFile(output_path, 'w', f.samplerate, 2) as o:
            # Read one second of audio at a time, until the file is empty:
            while f.tell() < f.frames:
                chunk = f.read(int(f.samplerate))
                chunk = np.tile(chunk, (2, 1)).T
                effected = board(chunk, f.samplerate, reset=False)
            o.write(effected)
......
@JackismyShephard
Copy link

@Jqliany I might consider adding this to my fork of this repo. Its available here: https://github.com/JackismyShephard/ultimate-rvc, in case you are interested.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants