Skip to content

Commit

Permalink
simplify faust code
Browse files Browse the repository at this point in the history
  • Loading branch information
David Braun committed May 22, 2022
1 parent b330d20 commit 660cac0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions examples/dj_mixing/dj.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ def __init__(self, sr):
import("stdfaust.lib");
mixer_slider = hslider("Mixer", 0., 0., 1., 0.0001) : si.smoo;
mixer = _, _ : it.interpolate_linear(mixer_slider);
stereo_mixer = par(i, 2, mixer);
process = ro.interleave(2,2) : stereo_mixer :> si.bus(2);
process = ro.interleave(2,2) : par(i, 2, mixer);
""")
# print(mixer.get_parameters_description())

Expand Down

0 comments on commit 660cac0

Please sign in to comment.