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

Adding support for single valued rbargs #25

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ Example usage
>>> y, sr = sf.read("test.wav")
>>> # Play back at double speed
>>> y_stretch = pyrb.time_stretch(y, sr, 2.0)
>>> # Pass rbargs supported in Rubberband CLI. See(rubberband -h or https://breakfastquay.com/rubberband/usage.txt)
>>> y_stretch = pyrb.time_stretch(y, sr, 2.0, rbargs={'-c':'5', '--no_transients':''})
```
21 changes: 14 additions & 7 deletions pyrubberband/pyrb.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def __rubberband(y, sr, **kwargs):

for key, value in six.iteritems(kwargs):
arguments.append(str(key))
arguments.append(str(value))
if len(str(value).strip()):
arguments.append(str(value))

arguments.extend([infile, outfile])

Expand Down Expand Up @@ -112,9 +113,11 @@ def time_stretch(y, sr, rate, rbargs=None):
rate : float > 0
Desired playback rate.

rbargs
rbargs : {key:value, key:value}
Additional keyword parameters for rubberband

Accepts a dictionary of key:value pairs supported by `rubberband`.
type(key and value) == str()
For single valued `rbargs`, pass empty string for `value`.
See `rubberband -h` for details.

Returns
Expand Down Expand Up @@ -167,9 +170,11 @@ def timemap_stretch(y, sr, time_map, rbargs=None):
`time_map[-1]` must correspond to the lengths of the source audio and
target audio.

rbargs
rbargs : {key:value, key:value}
Additional keyword parameters for rubberband

Accepts a dictionary of key:value pairs supported by `rubberband`.
type(key and value) == str()
For single valued `rbargs`, pass empty string for `value`.
See `rubberband -h` for details.

Returns
Expand Down Expand Up @@ -235,9 +240,11 @@ def pitch_shift(y, sr, n_steps, rbargs=None):
n_steps : float
Shift by `n_steps` semitones.

rbargs
rbargs : {key:value, key:value}
Additional keyword parameters for rubberband

Accepts a dictionary of key:value pairs supported by `rubberband`.
type(key and value) == str()
For single valued `rbargs`, pass empty string for `value`.
See `rubberband -h` for details.

Returns
Expand Down
33 changes: 21 additions & 12 deletions tests/test_pyrb.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,28 @@ def random_signal(channels, num_samples):
return np.random.random(shape)


@pytest.fixture(params=[{'-c': '5'}, {'--realtime': '', '--pitch-hq': ''},
{'--no-lamination': ''}, {'--formant': '', '--no-transients': ''}])
def unit_pitch_rbargs(request):
return request.param


@pytest.mark.parametrize(
"rate,ctx",
"rate,unit_stretch_rbargs,ctx",
[
(0.5, dnr()),
(1.0, dnr()),
(2.0, dnr()),
(-1, pytest.raises(ValueError)),
(-0.5, pytest.raises(ValueError)),
(0, pytest.raises(ValueError)),
(0.5, {'-c': '0', '--formant': ''}, dnr()),
(0.5, {'-c': '5'}, dnr()),
(0.5, {}, dnr()),
(1.0, {'--loose': ''}, dnr()),
(1.0, {'--no-transients': ''}, dnr()),
(2.0, {'--no-lamination': '', '--no-transients': '', '--window-long': ''}, dnr()),
(-1, {'-c': '5'}, pytest.raises(ValueError)),
(-1, {'--no-lamination': '', '--no-transients': '', '--window-long': ''}, pytest.raises(ValueError)),
(-0.5, {}, pytest.raises(ValueError)),
(0, {}, pytest.raises(ValueError)),
]
)
def test_stretch(sr, random_signal, num_samples, rate, ctx):
def test_stretch(sr, random_signal, num_samples, rate, ctx, unit_stretch_rbargs):
'''Test shape of random signals with stretching
factor of various rate.
'''
Expand All @@ -84,7 +94,7 @@ def test_stretch(sr, random_signal, num_samples, rate, ctx):
y = random_signal

with ctx:
y_s = pyrubberband.time_stretch(y, sr, rate=rate)
y_s = pyrubberband.time_stretch(y, sr, rate=rate, rbargs=unit_stretch_rbargs)

# test if output dimension matches input dimension
assert y_s.ndim == y.ndim
Expand All @@ -98,11 +108,10 @@ def test_stretch(sr, random_signal, num_samples, rate, ctx):
assert np.allclose(y_s.shape[0] * rate, y.shape[0])


def test_pitch(sr, num_samples, freq, n_step):

def test_pitch(sr, num_samples, freq, n_step, unit_pitch_rbargs):
y = synth(sr, num_samples, freq)

y_s = pyrubberband.pitch_shift(y, sr, n_step)
y_s = pyrubberband.pitch_shift(y, sr, n_step, rbargs=unit_pitch_rbargs)

# Make sure we have the same duration
assert np.allclose(len(y), len(y_s))
Expand Down