Jerry

Results 1 issues of Jerry

I used the code in the tutorial: ```py from pysndfx import AudioEffectsChain fx = ( AudioEffectsChain() .highshelf() .reverb() .phaser() .delay() .lowshelf() ) infile = 'C:/Users/user/Desktop/test\\000D3D330B1371EB.wav' outfile = 'C:/Users/user/Desktop/test\\000D3D330B1371EB.wav' fx(infile, outfile)...