1
0
Fork 0

Add a pitch shifting mode parameter

I experimented with some other equally broken but broken in slightly
different ways pitch shifting algorithms that also sound kind of fun.
This commit is contained in:
Robbert van der Helm 2022-05-09 16:29:36 +02:00
parent 081487fdcb
commit c6acdfa020

View file

@ -76,6 +76,18 @@ struct PubertySimulatorParams {
/// prevent invalid inputs).
#[id = "ovrlap"]
overlap_times_order: IntParam,
/// The type of broken pitch shifting to apply.
#[id = "mode"]
mode: EnumParam<PitchShiftingMode>,
}
#[derive(Enum, Debug, PartialEq)]
enum PitchShiftingMode {
/// Directly linearly interpolate sine and cosine waves from different bins. This obviously
/// sounds very bad, but it also sounds kind of hilarious.
#[name = "Very broken"]
VeryBroken,
}
impl Default for PubertySimulator {
@ -134,6 +146,7 @@ impl Default for PubertySimulatorParams {
)
.with_value_to_string(power_of_two_val2str)
.with_string_to_value(power_of_two_str2val),
mode: EnumParam::new("Mode", PitchShiftingMode::VeryBroken),
}
}
}
@ -254,7 +267,8 @@ impl Plugin for PubertySimulator {
// for this bin's frequency scaled by the octave pitch multiplies. The iteration
// order dependson the pitch shifting direction since we're doing it in place.
let num_bins = self.complex_fft_buffer.len();
let mut process_bin = |bin_idx| {
let mut process_bin = match self.params.mode.value() {
PitchShiftingMode::VeryBroken => |bin_idx| {
let frequency = bin_idx as f32 / window_size as f32 * sample_rate;
let target_frequency = frequency * frequency_multiplier;
@ -279,6 +293,7 @@ impl Plugin for PubertySimulator {
+ target_high * target_high_t)
* 3.0 // Random extra gain, not sure
* gain_compensation;
},
};
if frequency_multiplier >= 1.0 {