Skip to content

Commit

Permalink
Disabled some instructions outside the function
Browse files Browse the repository at this point in the history
  • Loading branch information
1176325 committed Mar 28, 2022
1 parent 1d281a0 commit 60768ab
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions python_code/effect_flanger.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ def flanger(audioin,Fs):
plt.ylabel("Delay Amount (normalized)")
plt.title("Delay vs Time")
return out

flanger(sinal,samplerate)

x=flanger(sinal,samplerate)
if False:
flanger(sinal,samplerate)

x=flanger(sinal,samplerate)

Audio(data=x, rate=samplerate)
Audio(data=x, rate=samplerate)

0 comments on commit 60768ab

Please sign in to comment.