forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Chorus audio effect #10044
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
Merged
Merged
Chorus audio effect #10044
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ff0c738
Initial commit
gamblor21 23a4df4
Increase max_delay limit and a less then zero bug
gamblor21 2455002
Changes for PR #10036
gamblor21 c3085f5
Fixed docs
gamblor21 06446b5
Use full buffer for storing delay and remove division of average
gamblor21 5ef8ea3
Fix unix build and unit conversion errors
gamblor21 4f928c9
Doc fix
gamblor21 702c33f
Actually commit unix build changes
gamblor21 6255c46
Add in mix
gamblor21 549a67d
Merge branch 'main' into audioeffect-chorus
gamblor21 3e7a36c
Fixed typecast missing error
gamblor21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,260 @@ | ||
// This file is part of the CircuitPython project: https://circuitpython.org | ||
// | ||
// SPDX-FileCopyrightText: Copyright (c) 2025 Mark Komus | ||
// | ||
// SPDX-License-Identifier: MIT | ||
|
||
#include <stdint.h> | ||
|
||
#include "shared-bindings/audiodelays/Chorus.h" | ||
#include "shared-module/audiodelays/Chorus.h" | ||
|
||
#include "shared/runtime/context_manager_helpers.h" | ||
#include "py/binary.h" | ||
#include "py/objproperty.h" | ||
#include "py/runtime.h" | ||
#include "shared-bindings/util.h" | ||
#include "shared-module/synthio/block.h" | ||
|
||
//| class Chorus: | ||
//| """An Chorus effect""" | ||
//| | ||
//| def __init__( | ||
//| self, | ||
//| max_delay_ms: int = 50, | ||
//| delay_ms: BlockInput = 50.0, | ||
//| voices: synthio.BlockInput = 1.0, | ||
//| buffer_size: int = 512, | ||
//| sample_rate: int = 8000, | ||
//| bits_per_sample: int = 16, | ||
//| samples_signed: bool = True, | ||
//| channel_count: int = 1, | ||
//| ) -> None: | ||
//| """Create a Chorus effect by playing the current sample along with one or more samples | ||
//| (the voices) from the delay buffer. The voices played are evenly spaced across the delay | ||
//| buffer. So for 2 voices you would hear the current sample and the one delay milliseconds back. | ||
//| The delay timing of the chorus can be changed at runtime with the delay_ms parameter but the delay | ||
//| can never exceed the max_delay_ms parameter. The maximum delay is 100ms. | ||
//| | ||
//| :param int max_delay_ms: The maximum time the chorus can be in milliseconds | ||
//| :param synthio.BlockInput delay_ms: The current time of the chorus delay in milliseconds. Must be less the max_delay_ms. | ||
//| :param synthio.BlockInput voices: The number of voices playing split evenly over the delay buffer. | ||
//| :param int buffer_size: The total size in bytes of each of the two playback buffers to use | ||
//| :param int sample_rate: The sample rate to be used | ||
//| :param int channel_count: The number of channels the source samples contain. 1 = mono; 2 = stereo. | ||
//| :param int bits_per_sample: The bits per sample of the effect | ||
//| :param bool samples_signed: Effect is signed (True) or unsigned (False) | ||
//| | ||
//| Playing adding an chorus to a synth:: | ||
//| | ||
//| import time | ||
//| import board | ||
//| import audiobusio | ||
//| import synthio | ||
//| import audiodelays | ||
//| | ||
//| audio = audiobusio.I2SOut(bit_clock=board.GP20, word_select=board.GP21, data=board.GP22) | ||
//| synth = synthio.Synthesizer(channel_count=1, sample_rate=44100) | ||
//| chorus = audiodelays.Chorus(max_delay_ms=50, delay_ms=5, buffer_size=1024, channel_count=1, sample_rate=44100) | ||
//| chorus.play(synth) | ||
//| audio.play(chorus) | ||
//| | ||
//| note = synthio.Note(261) | ||
//| while True: | ||
//| synth.press(note) | ||
//| time.sleep(0.25) | ||
//| synth.release(note) | ||
//| time.sleep(5)""" | ||
//| ... | ||
//| | ||
static mp_obj_t audiodelays_chorus_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) { | ||
enum { ARG_max_delay_ms, ARG_delay_ms, ARG_voices, ARG_buffer_size, ARG_sample_rate, ARG_bits_per_sample, ARG_samples_signed, ARG_channel_count, }; | ||
static const mp_arg_t allowed_args[] = { | ||
{ MP_QSTR_max_delay_ms, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 50 } }, | ||
{ MP_QSTR_delay_ms, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = MP_OBJ_NULL} }, | ||
{ MP_QSTR_voices, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = MP_OBJ_NULL} }, | ||
{ MP_QSTR_buffer_size, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 512} }, | ||
{ MP_QSTR_sample_rate, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 8000} }, | ||
{ MP_QSTR_bits_per_sample, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 16} }, | ||
{ MP_QSTR_samples_signed, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = true} }, | ||
{ MP_QSTR_channel_count, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 1 } }, | ||
}; | ||
|
||
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)]; | ||
mp_arg_parse_all_kw_array(n_args, n_kw, all_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args); | ||
|
||
mp_int_t max_delay_ms = mp_arg_validate_int_range(args[ARG_max_delay_ms].u_int, 1, 100, MP_QSTR_max_delay_ms); | ||
|
||
mp_int_t channel_count = mp_arg_validate_int_range(args[ARG_channel_count].u_int, 1, 2, MP_QSTR_channel_count); | ||
mp_int_t sample_rate = mp_arg_validate_int_min(args[ARG_sample_rate].u_int, 1, MP_QSTR_sample_rate); | ||
mp_int_t bits_per_sample = args[ARG_bits_per_sample].u_int; | ||
if (bits_per_sample != 8 && bits_per_sample != 16) { | ||
mp_raise_ValueError(MP_ERROR_TEXT("bits_per_sample must be 8 or 16")); | ||
} | ||
|
||
audiodelays_chorus_obj_t *self = mp_obj_malloc(audiodelays_chorus_obj_t, &audiodelays_chorus_type); | ||
common_hal_audiodelays_chorus_construct(self, max_delay_ms, args[ARG_delay_ms].u_obj, args[ARG_voices].u_obj, args[ARG_buffer_size].u_int, bits_per_sample, args[ARG_samples_signed].u_bool, channel_count, sample_rate); | ||
|
||
return MP_OBJ_FROM_PTR(self); | ||
} | ||
|
||
//| def deinit(self) -> None: | ||
//| """Deinitialises the Chorus.""" | ||
//| ... | ||
//| | ||
static mp_obj_t audiodelays_chorus_deinit(mp_obj_t self_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
common_hal_audiodelays_chorus_deinit(self); | ||
return mp_const_none; | ||
} | ||
static MP_DEFINE_CONST_FUN_OBJ_1(audiodelays_chorus_deinit_obj, audiodelays_chorus_deinit); | ||
|
||
static void check_for_deinit(audiodelays_chorus_obj_t *self) { | ||
if (common_hal_audiodelays_chorus_deinited(self)) { | ||
raise_deinited_error(); | ||
} | ||
} | ||
|
||
//| def __enter__(self) -> Chorus: | ||
//| """No-op used by Context Managers.""" | ||
//| ... | ||
//| | ||
// Provided by context manager helper. | ||
|
||
//| def __exit__(self) -> None: | ||
//| """Automatically deinitializes when exiting a context. See | ||
//| :ref:`lifetime-and-contextmanagers` for more info.""" | ||
//| ... | ||
//| | ||
static mp_obj_t audiodelays_chorus_obj___exit__(size_t n_args, const mp_obj_t *args) { | ||
(void)n_args; | ||
common_hal_audiodelays_chorus_deinit(args[0]); | ||
return mp_const_none; | ||
} | ||
static MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(audiodelays_chorus___exit___obj, 4, 4, audiodelays_chorus_obj___exit__); | ||
|
||
|
||
//| delay_ms: synthio.BlockInput | ||
//| """The current time of the chorus delay in milliseconds. Must be less the max_delay_ms.""" | ||
//| | ||
static mp_obj_t audiodelays_chorus_obj_get_delay_ms(mp_obj_t self_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
|
||
return common_hal_audiodelays_chorus_get_delay_ms(self); | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_1(audiodelays_chorus_get_delay_ms_obj, audiodelays_chorus_obj_get_delay_ms); | ||
|
||
static mp_obj_t audiodelays_chorus_obj_set_delay_ms(mp_obj_t self_in, mp_obj_t delay_ms_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
common_hal_audiodelays_chorus_set_delay_ms(self, delay_ms_in); | ||
return mp_const_none; | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_2(audiodelays_chorus_set_delay_ms_obj, audiodelays_chorus_obj_set_delay_ms); | ||
|
||
MP_PROPERTY_GETSET(audiodelays_chorus_delay_ms_obj, | ||
(mp_obj_t)&audiodelays_chorus_get_delay_ms_obj, | ||
(mp_obj_t)&audiodelays_chorus_set_delay_ms_obj); | ||
|
||
//| voices: synthio.BlockInput | ||
//| """The number of voices playing split evenly over the delay buffer.""" | ||
static mp_obj_t audiodelays_chorus_obj_get_voices(mp_obj_t self_in) { | ||
return common_hal_audiodelays_chorus_get_voices(self_in); | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_1(audiodelays_chorus_get_voices_obj, audiodelays_chorus_obj_get_voices); | ||
|
||
static mp_obj_t audiodelays_chorus_obj_set_voices(mp_obj_t self_in, mp_obj_t voices_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
common_hal_audiodelays_chorus_set_voices(self, voices_in); | ||
return mp_const_none; | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_2(audiodelays_chorus_set_voices_obj, audiodelays_chorus_obj_set_voices); | ||
|
||
MP_PROPERTY_GETSET(audiodelays_chorus_voices_obj, | ||
(mp_obj_t)&audiodelays_chorus_get_voices_obj, | ||
(mp_obj_t)&audiodelays_chorus_set_voices_obj); | ||
|
||
//| playing: bool | ||
//| """True when the effect is playing a sample. (read-only)""" | ||
//| | ||
static mp_obj_t audiodelays_chorus_obj_get_playing(mp_obj_t self_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
check_for_deinit(self); | ||
return mp_obj_new_bool(common_hal_audiodelays_chorus_get_playing(self)); | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_1(audiodelays_chorus_get_playing_obj, audiodelays_chorus_obj_get_playing); | ||
|
||
MP_PROPERTY_GETTER(audiodelays_chorus_playing_obj, | ||
(mp_obj_t)&audiodelays_chorus_get_playing_obj); | ||
|
||
//| def play(self, sample: circuitpython_typing.AudioSample, *, loop: bool = False) -> None: | ||
//| """Plays the sample once when loop=False and continuously when loop=True. | ||
//| Does not block. Use `playing` to block. | ||
//| | ||
//| The sample must match the encoding settings given in the constructor.""" | ||
//| ... | ||
//| | ||
static mp_obj_t audiodelays_chorus_obj_play(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { | ||
enum { ARG_sample, ARG_loop }; | ||
static const mp_arg_t allowed_args[] = { | ||
{ MP_QSTR_sample, MP_ARG_OBJ | MP_ARG_REQUIRED, {} }, | ||
{ MP_QSTR_loop, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = false} }, | ||
}; | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(pos_args[0]); | ||
check_for_deinit(self); | ||
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)]; | ||
mp_arg_parse_all(n_args - 1, pos_args + 1, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args); | ||
|
||
|
||
mp_obj_t sample = args[ARG_sample].u_obj; | ||
common_hal_audiodelays_chorus_play(self, sample, args[ARG_loop].u_bool); | ||
|
||
return mp_const_none; | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_KW(audiodelays_chorus_play_obj, 1, audiodelays_chorus_obj_play); | ||
|
||
//| def stop(self) -> None: | ||
//| """Stops playback of the sample.""" | ||
//| ... | ||
//| | ||
//| | ||
static mp_obj_t audiodelays_chorus_obj_stop(mp_obj_t self_in) { | ||
audiodelays_chorus_obj_t *self = MP_OBJ_TO_PTR(self_in); | ||
|
||
common_hal_audiodelays_chorus_stop(self); | ||
return mp_const_none; | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_1(audiodelays_chorus_stop_obj, audiodelays_chorus_obj_stop); | ||
|
||
static const mp_rom_map_elem_t audiodelays_chorus_locals_dict_table[] = { | ||
// Methods | ||
{ MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&audiodelays_chorus_deinit_obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR___enter__), MP_ROM_PTR(&default___enter___obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR___exit__), MP_ROM_PTR(&audiodelays_chorus___exit___obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR_play), MP_ROM_PTR(&audiodelays_chorus_play_obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR_stop), MP_ROM_PTR(&audiodelays_chorus_stop_obj) }, | ||
|
||
// Properties | ||
{ MP_ROM_QSTR(MP_QSTR_playing), MP_ROM_PTR(&audiodelays_chorus_playing_obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR_delay_ms), MP_ROM_PTR(&audiodelays_chorus_delay_ms_obj) }, | ||
{ MP_ROM_QSTR(MP_QSTR_voices), MP_ROM_PTR(&audiodelays_chorus_voices_obj) }, | ||
}; | ||
static MP_DEFINE_CONST_DICT(audiodelays_chorus_locals_dict, audiodelays_chorus_locals_dict_table); | ||
|
||
static const audiosample_p_t audiodelays_chorus_proto = { | ||
MP_PROTO_IMPLEMENT(MP_QSTR_protocol_audiosample) | ||
.sample_rate = (audiosample_sample_rate_fun)common_hal_audiodelays_chorus_get_sample_rate, | ||
.bits_per_sample = (audiosample_bits_per_sample_fun)common_hal_audiodelays_chorus_get_bits_per_sample, | ||
.channel_count = (audiosample_channel_count_fun)common_hal_audiodelays_chorus_get_channel_count, | ||
.reset_buffer = (audiosample_reset_buffer_fun)audiodelays_chorus_reset_buffer, | ||
.get_buffer = (audiosample_get_buffer_fun)audiodelays_chorus_get_buffer, | ||
.get_buffer_structure = (audiosample_get_buffer_structure_fun)audiodelays_chorus_get_buffer_structure, | ||
}; | ||
|
||
MP_DEFINE_CONST_OBJ_TYPE( | ||
audiodelays_chorus_type, | ||
MP_QSTR_Chorus, | ||
MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS, | ||
make_new, audiodelays_chorus_make_new, | ||
locals_dict, &audiodelays_chorus_locals_dict, | ||
protocol, &audiodelays_chorus_proto | ||
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// This file is part of the CircuitPython project: https://circuitpython.org | ||
// | ||
// SPDX-FileCopyrightText: Copyright (c) 2025 Mark Komus | ||
// | ||
// SPDX-License-Identifier: MIT | ||
|
||
#pragma once | ||
|
||
#include "shared-module/audiodelays/Chorus.h" | ||
|
||
extern const mp_obj_type_t audiodelays_chorus_type; | ||
|
||
void common_hal_audiodelays_chorus_construct(audiodelays_chorus_obj_t *self, uint32_t max_delay_ms, | ||
mp_obj_t delay_ms, mp_obj_t voices, | ||
uint32_t buffer_size, uint8_t bits_per_sample, | ||
bool samples_signed, uint8_t channel_count, uint32_t sample_rate); | ||
|
||
void common_hal_audiodelays_chorus_deinit(audiodelays_chorus_obj_t *self); | ||
bool common_hal_audiodelays_chorus_deinited(audiodelays_chorus_obj_t *self); | ||
|
||
uint32_t common_hal_audiodelays_chorus_get_sample_rate(audiodelays_chorus_obj_t *self); | ||
uint8_t common_hal_audiodelays_chorus_get_channel_count(audiodelays_chorus_obj_t *self); | ||
uint8_t common_hal_audiodelays_chorus_get_bits_per_sample(audiodelays_chorus_obj_t *self); | ||
|
||
mp_obj_t common_hal_audiodelays_chorus_get_delay_ms(audiodelays_chorus_obj_t *self); | ||
void common_hal_audiodelays_chorus_set_delay_ms(audiodelays_chorus_obj_t *self, mp_obj_t delay_ms); | ||
|
||
mp_obj_t common_hal_audiodelays_chorus_get_voices(audiodelays_chorus_obj_t *self); | ||
void common_hal_audiodelays_chorus_set_voices(audiodelays_chorus_obj_t *self, mp_obj_t voices); | ||
|
||
bool common_hal_audiodelays_chorus_get_playing(audiodelays_chorus_obj_t *self); | ||
void common_hal_audiodelays_chorus_play(audiodelays_chorus_obj_t *self, mp_obj_t sample, bool loop); | ||
void common_hal_audiodelays_chorus_stop(audiodelays_chorus_obj_t *self); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though it doesn't make too much sense from a "chorus" perspective to have a delay length greater than 100ms, should we limit the user to that range? I think we should encourage the user to use certain settings to achieve the typically desired effect in the documentation but not rule out other possibilities.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very good point. I'll up the limit to match Echo. Who knows maybe something cool comes from it.