├── README.md ├── SCD_V2 ├── .DS_Store ├── Effect │ ├── .DS_Store │ ├── Distortion │ │ ├── .DS_Store │ │ ├── asymparsat.scd │ │ ├── bias.scd │ │ ├── buchlafold.scd │ │ ├── chebyShaper.scd │ │ ├── decimator.scd │ │ ├── distort.scd │ │ ├── fattener.scd │ │ ├── hardclip.scd │ │ ├── multibanddistortion.scd │ │ ├── multibandhardclip.scd │ │ ├── multibandsineshaper.scd │ │ ├── newscooldistortion.scd │ │ ├── paramshaper.scd │ │ ├── roar.scd │ │ ├── sergeFold.scd │ │ ├── shaperos.scd │ │ ├── sigmoidshaper.scd │ │ ├── signaldestroyer.scd │ │ ├── sineshaper.scd │ │ ├── softsaturator.scd │ │ ├── subharmonicshaper.scd │ │ ├── tanh.scd │ │ ├── transientshaper.scd │ │ ├── wavefold.scd │ │ ├── waveshaper.scd │ │ └── zeroclipping.scd │ ├── Dynamics │ │ ├── .DS_Store │ │ ├── Sanitize.scd │ │ ├── compressor.scd │ │ ├── compressorb.scd │ │ ├── compressorc.scd │ │ ├── cuntpressor.scd │ │ ├── dccorrection.scd │ │ ├── dynamicCompressor.scd │ │ ├── gain.scd │ │ ├── limiter.scd │ │ ├── lineargain.scd │ │ ├── maximizer.scd │ │ ├── multibandcompressor.scd │ │ ├── noisegate.scd │ │ └── sidechain.scd │ ├── Eq │ │ ├── EQ5.scd │ │ └── harmonicExciter.scd │ ├── Filter │ │ ├── .DS_Store │ │ ├── DJFilter.scd │ │ ├── HPF.scd │ │ ├── LPF.scd │ │ ├── autowah.scd │ │ ├── bandpass.scd │ │ ├── bandpassbank.scd │ │ ├── comb.scd │ │ ├── combfeed.scd │ │ ├── filter4pole.scd │ │ ├── filter_multimode.scd │ │ ├── ladderfilter.scd │ │ ├── monobandpassbank1080.scd │ │ ├── monobandpassbank256.scd │ │ ├── moogfilter.scd │ │ ├── moogvcf.scd │ │ ├── notch.scd │ │ ├── peakfilter.scd │ │ ├── satfmfilter.scd │ │ ├── slinkfilter.scd │ │ ├── vadimfilter.scd │ │ └── vowelfilter.scd │ ├── Modulation │ │ ├── .DS_Store │ │ ├── ampmod.scd │ │ ├── ringmod.scd │ │ ├── tremolo.scd │ │ └── vibrato.scd │ ├── Pitch │ │ ├── .DS_Store │ │ ├── FreqShifter.scd │ │ ├── GrainPitchShifter.scd │ │ ├── PitchShifter.scd │ │ └── octavedown.scd │ ├── Resonators │ │ ├── .DS_Store │ │ ├── amp_decays.txt │ │ ├── bellResonator.scd │ │ ├── brushedCymbalResonator.scd │ │ ├── customresonator128.scd │ │ ├── customresonator16.scd │ │ ├── customresonator256.scd │ │ ├── customresonator32.scd │ │ ├── customresonator512.scd │ │ ├── customresonator64.scd │ │ ├── customresonator8.scd │ │ ├── cymbalResonator.scd │ │ ├── gamelanResonator.scd │ │ ├── glassResonator.scd │ │ ├── gongResonator.scd │ │ ├── handpanResonator.scd │ │ ├── kalimbaResonator.scd │ │ ├── marimbaResonator.scd │ │ ├── membraneResonator.scd │ │ ├── metalResonator.scd │ │ ├── plateResonator.scd │ │ ├── ratios.txt │ │ ├── sitarResonator.scd │ │ ├── steelDrumResonator.scd │ │ ├── stringResonator.scd │ │ ├── templeBlockResonator.scd │ │ └── woodBlockResonator.scd │ ├── Spectral │ │ ├── .DS_Store │ │ ├── PV_BinShift.scd │ │ ├── PV_Blur.scd │ │ ├── PV_Brickwall.scd │ │ ├── PV_HarmonicFilter.scd │ │ ├── PV_Magabove.scd │ │ ├── PV_Morph.scd │ │ ├── PV_RectComb.scd │ │ ├── blur.scd │ │ ├── fftenhancer.scd │ │ ├── freqblur.scd │ │ ├── freqwarp.scd │ │ ├── monoSpectralDelay512.scd │ │ ├── pitchFilter.scd │ │ ├── spectralMorph.scd │ │ ├── spectraldelay.scd │ │ ├── vocoder.scd │ │ ├── vocoderClassic.scd │ │ └── vocoderMax.scd │ └── Time │ │ ├── .DS_Store │ │ ├── Delay │ │ ├── .DS_Store │ │ ├── delay.scd │ │ ├── delayfeed.scd │ │ ├── echo.scd │ │ ├── echoHold.scd │ │ ├── echospat.scd │ │ ├── echospat_expand.scd │ │ ├── fftdelay.scd │ │ ├── grainclouddelay.scd │ │ ├── graindelay.scd │ │ ├── grainfeeddelay.scd │ │ ├── overdub.scd │ │ ├── pingpongecho.scd │ │ ├── pitchdelay.scd │ │ ├── tapedelay.scd │ │ └── triggeredGrainDelay.scd │ │ ├── Freeze │ │ ├── .DS_Store │ │ ├── freeze.scd │ │ ├── freezish.scd │ │ └── grainfreeze.scd │ │ ├── Looping │ │ ├── .DS_Store │ │ ├── BeatRepeat.scd │ │ ├── CircularBuffer.scd │ │ ├── CircularBufferFFT.scd │ │ ├── CircularBufferFFT2.scd │ │ ├── Looper.scd │ │ ├── Stutter.scd │ │ └── sutterPoly.scd │ │ ├── Phase │ │ ├── .DS_Store │ │ ├── chorus.scd │ │ ├── chorusb.scd │ │ ├── flanger.scd │ │ ├── flangerLFO.scd │ │ ├── flangerpitch.scd │ │ ├── flangersync.scd │ │ ├── phaseinvert.scd │ │ ├── phaser.scd │ │ ├── phaserb.scd │ │ └── phaserc.scd │ │ └── Reverb │ │ ├── .DS_Store │ │ ├── FDNReverb.scd │ │ ├── FreeVerb.scd │ │ ├── GreyholeReverb.scd │ │ ├── JPVerb.scd │ │ ├── LongReverb.scd │ │ ├── convolution.scd │ │ ├── gatedreverb.scd │ │ ├── grainReverb.scd │ │ ├── holdreverb.scd │ │ ├── primereverb.scd │ │ ├── richreverb.scd │ │ ├── schroederreverb.scd │ │ ├── shimmerReverb.scd │ │ ├── shimmerReverb_B.scd │ │ └── tankreverb.scd ├── InOut │ └── input.scd ├── KR │ ├── a2k.scd │ ├── beattracker.scd │ ├── bufalloc.scd │ ├── bufferscope.scd │ ├── function.scd │ ├── info.scd │ ├── mergebuf.scd │ ├── output.scd │ ├── output_stereomix.scd │ ├── pitchtracker.scd │ ├── polymixer.scd │ ├── recbuf.scd │ ├── recbuffhold.scd │ ├── wavescope.scd │ └── wavescope2.scd ├── Mixing │ ├── crossFadeAB.scd │ ├── mixer.scd │ └── polymixer.scd ├── Modulation │ ├── .DS_Store │ ├── Envelope │ │ ├── envelope.scd │ │ ├── morphenv.scd │ │ └── sigmoidenv.scd │ ├── LFO │ │ ├── .DS_Store │ │ ├── lfo.scd │ │ └── morphlfo.scd │ ├── Ramps │ │ ├── .DS_Store │ │ ├── phasor.scd │ │ ├── phasorhz.scd │ │ ├── phasorpitch.scd │ │ └── ramp.scd │ ├── Random │ │ ├── chance.scd │ │ ├── choose.scd │ │ └── random.scd │ ├── Sequencer │ │ ├── channelsequencer.scd │ │ ├── durationsequencer.scd │ │ ├── transport.scd │ │ ├── vectorsequencer.scd │ │ ├── xorsequencer.scd │ │ └── xorshiftregister.scd │ └── Trigger │ │ ├── .DS_Store │ │ ├── durationsequential.scd │ │ ├── gateduration.scd │ │ ├── metro.scd │ │ └── metrosequential.scd ├── Routing │ ├── 4x4matrix.scd │ ├── channelduplicator.scd │ ├── channelmapper.scd │ ├── channelrouter.scd │ ├── channelsolo.scd │ ├── crossover.scd │ ├── multibandseparator.scd │ ├── ntom.scd │ └── shiftChannel.scd ├── Source │ ├── .DS_Store │ ├── Additive │ │ └── additive.scd │ ├── Analog │ │ ├── .DS_Store │ │ ├── MorphOsc.scd │ │ ├── analog.scd │ │ ├── blit.scd │ │ ├── simpleimpulse.scd │ │ ├── simplepulse.scd │ │ ├── simplesaw.scd │ │ ├── simplesine.scd │ │ ├── squine.scd │ │ ├── superpulse.scd │ │ └── supersaw.scd │ ├── Chaotic │ │ └── chaotic.scd │ ├── FM │ │ ├── FM2op.scd │ │ ├── FMFeedback.scd │ │ ├── fmgrain.scd │ │ ├── kontour.scd │ │ └── pmod.scd │ ├── Feedback │ │ ├── .DS_Store │ │ ├── dualfeedbackosc.scd │ │ ├── fbdrone.scd │ │ ├── fbdronemod.scd │ │ ├── feedback.scd │ │ └── feedbackoscillator.scd │ ├── Formants │ │ ├── .DS_Store │ │ ├── FMFormant.scd │ │ └── Formants.scd │ ├── Noise │ │ ├── click.scd │ │ ├── geiger.scd │ │ └── noise.scd │ ├── Oversampling │ │ ├── pmoscos.scd │ │ ├── sawos.scd │ │ ├── sinos.scd │ │ ├── squareos.scd │ │ └── trios.scd │ ├── Percussion │ │ ├── 808 │ │ │ ├── .DS_Store │ │ │ ├── clap808.scd │ │ │ ├── claves808.scd │ │ │ ├── cowbell808.scd │ │ │ ├── cymbal808.scd │ │ │ ├── hat808.scd │ │ │ ├── kick808.scd │ │ │ ├── maracas808.scd │ │ │ ├── openhihat808.scd │ │ │ ├── rimshot808.scd │ │ │ ├── snare808.scd │ │ │ └── tom808.scd │ │ ├── .DS_Store │ │ ├── abstractdrum.scd │ │ ├── clap.scd │ │ ├── crash.scd │ │ ├── fmdrum.scd │ │ ├── fmperc.scd │ │ ├── hihat.scd │ │ ├── kickbestia.scd │ │ ├── kickdrum.scd │ │ ├── kickdrumb.scd │ │ ├── kickdrumc.scd │ │ ├── realisticsnare.scd │ │ └── snare.scd │ ├── PhysicalModelling │ │ ├── .DS_Store │ │ ├── Rhodes.scd │ │ ├── baschet.scd │ │ ├── bow.scd │ │ ├── bowedCrystal.scd │ │ ├── brass.scd │ │ ├── brushedcymbal.scd │ │ ├── celesta.scd │ │ ├── cymbalcrash.scd │ │ ├── cymbalpad.scd │ │ ├── dwgclarinet.scd │ │ ├── dwgflute.scd │ │ ├── flute.scd │ │ ├── framedrum.scd │ │ ├── gamelan.scd │ │ ├── glasspercussion.scd │ │ ├── gongageng.scd │ │ ├── handpan.scd │ │ ├── junkpercussion.scd │ │ ├── kalimba.scd │ │ ├── karpluspluck.scd │ │ ├── mallet.scd │ │ ├── marimba.scd │ │ ├── mdapiano.scd │ │ ├── membrane.scd │ │ ├── metal.scd │ │ ├── metalplate.scd │ │ ├── oteypiano.scd │ │ ├── pluck.scd │ │ ├── pluckResonator.scd │ │ ├── prayerbell.scd │ │ ├── sitar.scd │ │ ├── steeldrum.scd │ │ ├── tabla.scd │ │ ├── templeblock.scd │ │ ├── woodblock.scd │ │ └── woodwind.scd │ ├── Pulsar │ │ ├── .DS_Store │ │ ├── FMPulsar.scd │ │ ├── Pulsar.scd │ │ ├── Pulsar2.scd │ │ ├── PulseTrain.scd │ │ └── wavelet.scd │ ├── Sampler │ │ ├── .DS_Store │ │ ├── BasicSampler.scd │ │ ├── CrossLooper.scd │ │ ├── FFTStretch.scd │ │ ├── GrainSampler.scd │ │ ├── OneShotSampler.scd │ │ ├── PaulStretch.scd │ │ ├── SamplerJump.scd │ │ ├── SamplerStretch.scd │ │ ├── SamplerSync.scd │ │ ├── breaksampler.scd │ │ ├── paulstretch_multi.scd │ │ └── vectory.scd │ ├── Special │ │ ├── .DS_Store │ │ ├── aliasingsynth.scd │ │ ├── bubblea.scd │ │ ├── bubbleb.scd │ │ ├── buzzbass.scd │ │ ├── frumbo.scd │ │ ├── guttersynth.scd │ │ ├── ikedabass.scd │ │ ├── lissajous.scd │ │ ├── recursive.scd │ │ ├── sigmoidOSC.scd │ │ └── tb303.scd │ ├── Stochastic │ │ ├── gendy.scd │ │ └── simplex.scd │ ├── Sync │ │ ├── .DS_Store │ │ ├── HardSync.scd │ │ ├── HardSyncBLPulse.scd │ │ ├── HardSyncBLSaw.scd │ │ ├── HardSyncPulse.scd │ │ └── SyncSaw.scd │ ├── Vector │ │ ├── .DS_Store │ │ ├── VectorSynth.scd │ │ └── VectorSynthB.scd │ └── WaveTable │ │ ├── .DS_Store │ │ └── WTSynth.scd ├── Spatial │ ├── .DS_Store │ ├── MidSide │ │ └── midside.scd │ ├── Panning │ │ ├── .DS_Store │ │ ├── dbap.scd │ │ ├── multibandPanner.scd │ │ ├── panaz.scd │ │ ├── panazdoppler.scd │ │ ├── panner.scd │ │ └── xpanaz.scd │ └── Perceptual │ │ ├── binauralHaas.scd │ │ └── leslie.scd ├── Utilities │ ├── .DS_Store │ ├── Analysis │ │ ├── envelopeFollower.scd │ │ ├── samplerate.scd │ │ └── spectralAnalyzer.scd │ ├── Conversion │ │ ├── conversions.scd │ │ └── sig.scd │ ├── Math │ │ ├── arithmetics.scd │ │ ├── channelStatistics.scd │ │ ├── clipminmax.scd │ │ ├── logicops.scd │ │ ├── mapper.scd │ │ ├── quantize.scd │ │ ├── trigonometry.scd │ │ └── unaryop.scd │ ├── Other │ │ ├── phasorcycletrigger.scd │ │ └── sampleandhold.scd │ └── Voicing │ │ ├── .DS_Store │ │ └── impulsecounter.scd ├── VST │ ├── VSTPlugin-UGen-Internals.md │ ├── VSTPluginController.sc │ ├── vst.scd │ └── vst_test.scd ├── mainDefinitions.scd └── reference_scd │ ├── analog.scd │ └── panner.scd ├── categories.txt ├── hacked_UGENS └── OteyPianoUGens.scx ├── json └── Synthdefs.json ├── scd ├── .DS_Store ├── 808.scd ├── FM2op.scd ├── PitchTracker │ ├── PitchTracker1.scsyndef │ ├── PitchTracker10.scsyndef │ ├── PitchTracker100.scsyndef │ ├── PitchTracker11.scsyndef │ ├── PitchTracker12.scsyndef │ ├── PitchTracker13.scsyndef │ ├── PitchTracker14.scsyndef │ ├── PitchTracker15.scsyndef │ ├── PitchTracker16.scsyndef │ ├── PitchTracker17.scsyndef │ ├── PitchTracker18.scsyndef │ ├── PitchTracker19.scsyndef │ ├── PitchTracker2.scsyndef │ ├── PitchTracker20.scsyndef │ ├── PitchTracker21.scsyndef │ ├── PitchTracker22.scsyndef │ ├── PitchTracker23.scsyndef │ ├── PitchTracker24.scsyndef │ ├── PitchTracker25.scsyndef │ ├── PitchTracker26.scsyndef │ ├── PitchTracker27.scsyndef │ ├── PitchTracker28.scsyndef │ ├── PitchTracker29.scsyndef │ ├── PitchTracker3.scsyndef │ ├── PitchTracker30.scsyndef │ ├── PitchTracker31.scsyndef │ ├── PitchTracker32.scsyndef │ ├── PitchTracker33.scsyndef │ ├── PitchTracker34.scsyndef │ ├── PitchTracker35.scsyndef │ ├── PitchTracker36.scsyndef │ ├── PitchTracker37.scsyndef │ ├── PitchTracker38.scsyndef │ ├── PitchTracker39.scsyndef │ ├── PitchTracker4.scsyndef │ ├── PitchTracker40.scsyndef │ ├── PitchTracker41.scsyndef │ ├── PitchTracker42.scsyndef │ ├── PitchTracker43.scsyndef │ ├── PitchTracker44.scsyndef │ ├── PitchTracker45.scsyndef │ ├── PitchTracker46.scsyndef │ ├── PitchTracker47.scsyndef │ ├── PitchTracker48.scsyndef │ ├── PitchTracker49.scsyndef │ ├── PitchTracker5.scsyndef │ ├── PitchTracker50.scsyndef │ ├── PitchTracker51.scsyndef │ ├── PitchTracker52.scsyndef │ ├── PitchTracker53.scsyndef │ ├── PitchTracker54.scsyndef │ ├── PitchTracker55.scsyndef │ ├── PitchTracker56.scsyndef │ ├── PitchTracker57.scsyndef │ ├── PitchTracker58.scsyndef │ ├── PitchTracker59.scsyndef │ ├── PitchTracker6.scsyndef │ ├── PitchTracker60.scsyndef │ ├── PitchTracker61.scsyndef │ ├── PitchTracker62.scsyndef │ ├── PitchTracker63.scsyndef │ ├── PitchTracker64.scsyndef │ ├── PitchTracker65.scsyndef │ ├── PitchTracker66.scsyndef │ ├── PitchTracker67.scsyndef │ ├── PitchTracker68.scsyndef │ ├── PitchTracker69.scsyndef │ ├── PitchTracker7.scsyndef │ ├── PitchTracker70.scsyndef │ ├── PitchTracker71.scsyndef │ ├── PitchTracker72.scsyndef │ ├── PitchTracker73.scsyndef │ ├── PitchTracker74.scsyndef │ ├── PitchTracker75.scsyndef │ ├── PitchTracker76.scsyndef │ ├── PitchTracker77.scsyndef │ ├── PitchTracker78.scsyndef │ ├── PitchTracker79.scsyndef │ ├── PitchTracker8.scsyndef │ ├── PitchTracker80.scsyndef │ ├── PitchTracker81.scsyndef │ ├── PitchTracker82.scsyndef │ ├── PitchTracker83.scsyndef │ ├── PitchTracker84.scsyndef │ ├── PitchTracker85.scsyndef │ ├── PitchTracker86.scsyndef │ ├── PitchTracker87.scsyndef │ ├── PitchTracker88.scsyndef │ ├── PitchTracker89.scsyndef │ ├── PitchTracker9.scsyndef │ ├── PitchTracker90.scsyndef │ ├── PitchTracker91.scsyndef │ ├── PitchTracker92.scsyndef │ ├── PitchTracker93.scsyndef │ ├── PitchTracker94.scsyndef │ ├── PitchTracker95.scsyndef │ ├── PitchTracker96.scsyndef │ ├── PitchTracker97.scsyndef │ ├── PitchTracker98.scsyndef │ └── PitchTracker99.scsyndef ├── SIGNES78.scd ├── SIGNES78_novarlag.scd ├── abstractDrum.scd ├── additive.scd ├── additivecomb.scd ├── advancedreverb.scd ├── aliasingSynth.scd ├── ampmod.scd ├── analog.scd ├── asymparsat.scd ├── audioinput.scd ├── bandpass78.scd ├── baschet.scd ├── beatrepeat.scd ├── beatslicer.scd ├── beattrack.scd ├── bells.scd ├── blit.scd ├── blur.scd ├── bowpluck.scd ├── brass.scd ├── brushedcymbal.scd ├── bubble.scd ├── buzzbass.scd ├── campaneitor_collection.scd ├── campaneitor_signes.scd ├── channelshift.scd ├── chorus.scd ├── circularbuffer.scd ├── click.scd ├── combfilter.scd ├── compressor.scd ├── convolution.scd ├── crossfadeloopsampler.scd ├── cymbal.scd ├── cymbalpad.scd ├── dbap.scd ├── dccorrection.scd ├── decimator.scd ├── delay.scd ├── distort.scd ├── doppler.scd ├── dwgflute.scd ├── dynklang.scd ├── dynklank.scd ├── echo.scd ├── envelope.scd ├── eq.scd ├── fbdrone.scd ├── feedback.scd ├── feedosc.scd ├── fft.scd ├── fftdelay.scd ├── fftstretch.scd ├── filter.scd ├── filter4pole.scd ├── flanger.scd ├── flute.scd ├── fm1op.scd ├── fm4op.scd ├── fmcomplex.scd ├── fmformants.scd ├── fmperc.scd ├── fmpulsar.scd ├── formants.scd ├── forms.scd ├── frameDrum.scd ├── freeverb.scd ├── freeze.scd ├── freqshifter.scd ├── frumbo.scd ├── gain.scd ├── gamelan.scd ├── gong.scd ├── grain.scd ├── grainclouddelay.scd ├── grainclouddelay_ok.scd ├── graindelay.scd ├── grainfreeze.scd ├── grainsampler.scd ├── granular_reverb.scd ├── guttersynth.scd ├── handpan.scd ├── hardclip.scd ├── hardsync.scd ├── holdreverb.scd ├── ikedabass.scd ├── info.scd ├── junkperc.scd ├── kalimba.scd ├── karplus.scd ├── kickbestia.scd ├── kickdrum.scd ├── kickdrumb.scd ├── kickdrumc.scd ├── lfo.scd ├── limiter.scd ├── lissajous.scd ├── looper.scd ├── mallet.scd ├── marimba.scd ├── materials_modal.scd ├── mdapiano.scd ├── membrane.scd ├── metal.scd ├── metalPlate.scd ├── miniklang.scd ├── mixer.scd ├── monoize.scd ├── monoto.scd ├── moogfilter.scd ├── moogvcf.scd ├── morphosc.scd ├── multar.scd ├── multibanddistortion13.scd ├── multiplier.scd ├── noise.scd ├── noisegate.scd ├── notch.scd ├── output.scd ├── panaz.scd ├── panner.scd ├── paulstretch.scd ├── peakfilter.scd ├── percmembrane.scd ├── phaseinvert.scd ├── phasemod.scd ├── phaser.scd ├── phasor.scd ├── piano.scd ├── pitchdelay13.scd ├── pitchshift.scd ├── pluck.scd ├── polymixer.scd ├── polymute.scd ├── prayerbell.scd ├── pulsar.scd ├── pulsar2.scd ├── pulsar3.scd ├── rave.scd ├── realisticsnare.scd ├── recorder.scd ├── recursion.scd ├── resonator.scd ├── reverb.scd ├── rhythmicmute.scd ├── ringmod.scd ├── ringz.scd ├── rotatetranslate.scd ├── sampler.scd ├── satfmfilter.scd ├── shapers.scd ├── sidechain.scd ├── simplereverb.scd ├── sinefeed.scd ├── sineshaper.scd ├── sitar.scd ├── slicer.scd ├── softsaturator.scd ├── solochannel.scd ├── spectralmorph.scd ├── squine.scd ├── steampipe.scd ├── steelDrum.scd ├── stereomix.scd ├── stereopan13.scd ├── stutter.scd ├── superfm.scd ├── supersaw.scd ├── syncsaw.scd ├── tankreverb.scd ├── tapedelay.scd ├── tb303.scd ├── testmc.scd ├── timpani.scd ├── transientshaper.scd ├── tremolo.scd ├── vadimfilter.scd ├── vectorsynth.scd ├── vibrato.scd ├── vocoder.scd ├── wavefold.scd ├── waveform.scd ├── woodblocks.scd ├── woodwind.scd └── wtsynth.scd └── synthdef ├── .DS_Store ├── Info ├── Info1.scsyndef ├── Info10.scsyndef ├── Info100.scsyndef ├── Info11.scsyndef ├── Info12.scsyndef ├── Info13.scsyndef ├── Info14.scsyndef ├── Info15.scsyndef ├── Info16.scsyndef ├── Info17.scsyndef ├── Info18.scsyndef ├── Info19.scsyndef ├── Info2.scsyndef ├── Info20.scsyndef ├── Info21.scsyndef ├── Info22.scsyndef ├── Info23.scsyndef ├── Info24.scsyndef ├── Info25.scsyndef ├── Info26.scsyndef ├── Info27.scsyndef ├── Info28.scsyndef ├── Info29.scsyndef ├── Info3.scsyndef ├── Info30.scsyndef ├── Info31.scsyndef ├── Info32.scsyndef ├── Info33.scsyndef ├── Info34.scsyndef ├── Info35.scsyndef ├── Info36.scsyndef ├── Info37.scsyndef ├── Info38.scsyndef ├── Info39.scsyndef ├── Info4.scsyndef ├── Info40.scsyndef ├── Info41.scsyndef ├── Info42.scsyndef ├── Info43.scsyndef ├── Info44.scsyndef ├── Info45.scsyndef ├── Info46.scsyndef ├── Info47.scsyndef ├── Info48.scsyndef ├── Info49.scsyndef ├── Info5.scsyndef ├── Info50.scsyndef ├── Info51.scsyndef ├── Info52.scsyndef ├── Info53.scsyndef ├── Info54.scsyndef ├── Info55.scsyndef ├── Info56.scsyndef ├── Info57.scsyndef ├── Info58.scsyndef ├── Info59.scsyndef ├── Info6.scsyndef ├── Info60.scsyndef ├── Info61.scsyndef ├── Info62.scsyndef ├── Info63.scsyndef ├── Info64.scsyndef ├── Info65.scsyndef ├── Info66.scsyndef ├── Info67.scsyndef ├── Info68.scsyndef ├── Info69.scsyndef ├── Info7.scsyndef ├── Info70.scsyndef ├── Info71.scsyndef ├── Info72.scsyndef ├── Info73.scsyndef ├── Info74.scsyndef ├── Info75.scsyndef ├── Info76.scsyndef ├── Info77.scsyndef ├── Info78.scsyndef ├── Info79.scsyndef ├── Info8.scsyndef ├── Info80.scsyndef ├── Info81.scsyndef ├── Info82.scsyndef ├── Info83.scsyndef ├── Info84.scsyndef ├── Info85.scsyndef ├── Info86.scsyndef ├── Info87.scsyndef ├── Info88.scsyndef ├── Info89.scsyndef ├── Info9.scsyndef ├── Info90.scsyndef ├── Info91.scsyndef ├── Info92.scsyndef ├── Info93.scsyndef ├── Info94.scsyndef ├── Info95.scsyndef ├── Info96.scsyndef ├── Info97.scsyndef ├── Info98.scsyndef └── Info99.scsyndef ├── abstractdrum.scsyndef ├── additive13.scsyndef ├── additivecomb.scsyndef ├── advancedeverb13.scsyndef ├── advancedreverb13.scsyndef ├── aliasingsynth13.scsyndef ├── aliasingsynth13b.scsyndef ├── aliasingsynth13c.scsyndef ├── aliasingsynth13d.scsyndef ├── ampmod.scsyndef ├── ampmod13.scsyndef ├── ampmodb13.scsyndef ├── ampmodmono.scsyndef ├── analog.scsyndef ├── analog13.scsyndef ├── analog13ar.scsyndef ├── analog2.scsyndef ├── analog48.scsyndef ├── analog9.scsyndef ├── analogmono.scsyndef ├── asymparsat13.scsyndef ├── audioinput.scsyndef ├── audioinput13.scsyndef ├── audioinput2.scsyndef ├── audioinput6.scsyndef ├── autotrack.scsyndef ├── bandpass1080.scsyndef ├── bandpass13.scsyndef ├── bandpass256.scsyndef ├── bandpass256_13.scsyndef ├── bandpass32_13.scsyndef ├── bandpass78.scsyndef ├── beatrepeat13.scsyndef ├── bells13.scsyndef ├── binshift.scsyndef ├── blit13.scsyndef ├── bow13.scsyndef ├── bowedcrystal13.scsyndef ├── brass13.scsyndef ├── brickwallfilter.scsyndef ├── brushedcymbal13.scsyndef ├── bubblea.scsyndef ├── bubbleb.scsyndef ├── buzz13.scsyndef ├── campaneitorsignes.scsyndef ├── campaneitorunna.scsyndef ├── channelshift13.scsyndef ├── chinesegong13.scsyndef ├── chorus.scsyndef ├── chorus13.scsyndef ├── chorus6.scsyndef ├── chorusb13.scsyndef ├── chorusb78.scsyndef ├── chorusmono.scsyndef ├── circularbuffer13.scsyndef ├── circularbufferfft2.scsyndef ├── circularstereomix13.scsyndef ├── click.scsyndef ├── click13.scsyndef ├── clickmono.scsyndef ├── comb.scsyndef ├── comb13.scsyndef ├── comb48.scsyndef ├── comb6.scsyndef ├── combfeed13.scsyndef ├── combmono.scsyndef ├── compressor.scsyndef ├── compressor13.scsyndef ├── compressorb13.scsyndef ├── compressormono.scsyndef ├── cristalbaschet13.scsyndef ├── crosslooper13.scsyndef ├── crosslooper2.scsyndef ├── crosslooperb13.scsyndef ├── cymbal13.scsyndef ├── cymbalpad13.scsyndef ├── dccorrection13.scsyndef ├── decimator.scsyndef ├── delay.scsyndef ├── delay13.scsyndef ├── delay2.scsyndef ├── delay78.scsyndef ├── delayfeed13.scsyndef ├── distort.scsyndef ├── distort13.scsyndef ├── distortmono.scsyndef ├── dwgclarinet13.scsyndef ├── dwgflute13.scsyndef ├── dynklang.scsyndef ├── dynklang13.scsyndef ├── dynklangmono.scsyndef ├── dynklank.scsyndef ├── dynklank13.scsyndef ├── dynklankmono.scsyndef ├── echo.scsyndef ├── echo13.scsyndef ├── echo2.scsyndef ├── echomono.scsyndef ├── echospat13.scsyndef ├── envelope13.scsyndef ├── eq.scsyndef ├── eq13.scsyndef ├── eqmono.scsyndef ├── fbdrone13.scsyndef ├── fbdronemod13.scsyndef ├── feedback.scsyndef ├── feedback13.scsyndef ├── feedbackb.scsyndef ├── feedbackosc13.scsyndef ├── fftblur.scsyndef ├── fftdelay.scsyndef ├── fftstretch.scsyndef ├── fftstretch2.scsyndef ├── fftstretch6.scsyndef ├── filter.scsyndef ├── filter13.scsyndef ├── filter48.scsyndef ├── filter4pole13.scsyndef ├── filter6.scsyndef ├── filtermono.scsyndef ├── flanger.scsyndef ├── flanger13.scsyndef ├── flangermono.scsyndef ├── flangerpitch.scsyndef ├── flangerpitch13.scsyndef ├── flangerpitchmono.scsyndef ├── flangersync13.scsyndef ├── flute.scsyndef ├── flute13.scsyndef ├── flute2_13.scsyndef ├── fm.scsyndef ├── fm13.scsyndef ├── fm4raw.scsyndef ├── fmcomplex13.scsyndef ├── fmcomplex6.scsyndef ├── fmformant13.scsyndef ├── fmmono.scsyndef ├── fmnoise.scsyndef ├── fmperc.scsyndef ├── fmpulsar13.scsyndef ├── formants.scsyndef ├── forms.scsyndef ├── forms13.scsyndef ├── forms2.scsyndef ├── forms6.scsyndef ├── framedrum.scsyndef ├── freeverb13.scsyndef ├── freeze.scsyndef ├── freeze13.scsyndef ├── freezefeed13.scsyndef ├── freezemod.scsyndef ├── freezemono.scsyndef ├── freqshifter.scsyndef ├── frequencywholes.scsyndef ├── frumbo13.scsyndef ├── gain.scsyndef ├── gain13.scsyndef ├── gamelan13.scsyndef ├── glass13.scsyndef ├── gongageng13.scsyndef ├── graincloud13.scsyndef ├── grainclouddelay.scsyndef ├── grainclouddelaybuf.scsyndef ├── grainclouddelaysq.scsyndef ├── graindelay13.scsyndef ├── grainfreeze.scsyndef ├── grainpitchshift13.scsyndef ├── grainpitchshift2.scsyndef ├── grainsampler.scsyndef ├── grainsampler13.scsyndef ├── grainsampler13b.scsyndef ├── grainsamplermono.scsyndef ├── greyholereverb13.scsyndef ├── guttersynth.scsyndef ├── handpan13.scsyndef ├── hardclip13.scsyndef ├── hardsync13.scsyndef ├── hardsyncblpulse13.scsyndef ├── hardsyncblsaw13.scsyndef ├── hardsyncpulse13.scsyndef ├── hardsyncsquine13.scsyndef ├── holdfilteredreverb13.scsyndef ├── holdreverb13.scsyndef ├── ikedabass.scsyndef ├── ikedabass13.scsyndef ├── ikedabassmono.scsyndef ├── info1.scsyndef ├── info13.scsyndef ├── info2.scsyndef ├── info6.scsyndef ├── info78.scsyndef ├── jpverb13.scsyndef ├── junkperc2.scsyndef ├── kalimba13.scsyndef ├── karplushold6.scsyndef ├── karpluspluck13.scsyndef ├── karpluspluck6.scsyndef ├── kick_808.scsyndef ├── kickdrum.scsyndef ├── kickdrum13.scsyndef ├── kickdrumb.scsyndef ├── kickdrumb13.scsyndef ├── kickdrumbmono.scsyndef ├── kickdrumc.scsyndef ├── kickdrummono.scsyndef ├── kontour13.scsyndef ├── ladderfilter13.scsyndef ├── lfo13.scsyndef ├── lfo6.scsyndef ├── lfosync13.scsyndef ├── limiter.scsyndef ├── limiter13.scsyndef ├── limitermono.scsyndef ├── lineargain.scsyndef ├── lineargain13.scsyndef ├── lineargain6.scsyndef ├── lineargainmono.scsyndef ├── lissajous2.scsyndef ├── looper13.scsyndef ├── magabove.scsyndef ├── mallet.scsyndef ├── mallet13.scsyndef ├── malletdrone13.scsyndef ├── malletin13.scsyndef ├── marimba13.scsyndef ├── mdapiano13.scsyndef ├── membrane.scsyndef ├── membrane13.scsyndef ├── membranefx13.scsyndef ├── membranestereo.scsyndef ├── metal13.scsyndef ├── miniklang.scsyndef ├── mixer.scsyndef ├── mixer13.scsyndef ├── mixermono.scsyndef ├── monoize13.scsyndef ├── monoize78.scsyndef ├── monoto13.scsyndef ├── monoto78.scsyndef ├── moogfilter13.scsyndef ├── moogvcf13.scsyndef ├── morphosc2.scsyndef ├── multar.scsyndef ├── multibanddistortion13.scsyndef ├── multibandhardclip13.scsyndef ├── multibandsineshaper13.scsyndef ├── multiplier.scsyndef ├── multiplier13.scsyndef ├── multipliermono.scsyndef ├── noise.scsyndef ├── noise13.scsyndef ├── noise13ar.scsyndef ├── noisegate13.scsyndef ├── noisemono.scsyndef ├── notch13.scsyndef ├── oneshotsampler13.scsyndef ├── output.scsyndef ├── panaz13.scsyndef ├── panaz13multi.scsyndef ├── panaz13multiar.scsyndef ├── panaz13multihaas.scsyndef ├── panaz13to6.scsyndef ├── panaz6.scsyndef ├── panaz6multiar.scsyndef ├── panaz78to13.scsyndef ├── panaz78to6.scsyndef ├── panazdoppler13.scsyndef ├── panazdoppler13b.scsyndef ├── panazdoppler6.scsyndef ├── panner13.scsyndef ├── panner6.scsyndef ├── paramshaper13.scsyndef ├── paulstretch2.scsyndef ├── peakfilter13.scsyndef ├── percmembrane13.scsyndef ├── phaseinvert13.scsyndef ├── phaser.scsyndef ├── phaser13.scsyndef ├── phaserb13.scsyndef ├── phaserc13.scsyndef ├── phasermono.scsyndef ├── phasorar.scsyndef ├── phmod.scsyndef ├── phmod13.scsyndef ├── phmodmono.scsyndef ├── pingpongecho2.scsyndef ├── pitchdelay13.scsyndef ├── pitchshifter.scsyndef ├── pluck.scsyndef ├── pluck13.scsyndef ├── pluck_in13.scsyndef ├── polymixer.scsyndef ├── polymixer13.scsyndef ├── polymixer13_solo.scsyndef ├── polymixermono.scsyndef ├── polymute13.scsyndef ├── prayerbell13.scsyndef ├── prayerbell2.scsyndef ├── proreverb13.scsyndef ├── pulsar.scsyndef ├── pulsar2.scsyndef ├── pulsefeed13.scsyndef ├── pulsetrain.scsyndef ├── pulsetrain_multi.scsyndef ├── rave.scsyndef ├── ravepercussion.scsyndef ├── realsnare2.scsyndef ├── rectify.scsyndef ├── recursive13.scsyndef ├── recursive2.scsyndef ├── resonator13.scsyndef ├── reverb.scsyndef ├── reverb13.scsyndef ├── reverb13b.scsyndef ├── reverb2.scsyndef ├── reverb6.scsyndef ├── reverbmono.scsyndef ├── rhythmicmute.scsyndef ├── ringmod.scsyndef ├── ringmod13.scsyndef ├── ringmodb13.scsyndef ├── ringmodmono.scsyndef ├── ringz13.scsyndef ├── ringz78.scsyndef ├── rotatetranslate.scsyndef ├── sampler.scsyndef ├── sampler13.scsyndef ├── samplerjump13.scsyndef ├── samplermono.scsyndef ├── samplerstretch13.scsyndef ├── samplersync13.scsyndef ├── sampleslicer2.scsyndef ├── satfmfilter13.scsyndef ├── sawfeed13.scsyndef ├── schroedereverb13.scsyndef ├── shiftchannels.scsyndef ├── shiftchannels13.scsyndef ├── shiftchannels6.scsyndef ├── sidechain13.scsyndef ├── sigmoidshaper13.scsyndef ├── simplereverb6.scsyndef ├── sinefeed13.scsyndef ├── sineshaper.scsyndef ├── sineshaper13.scsyndef ├── sineshapermono.scsyndef ├── sitar13.scsyndef ├── snare_808.scsyndef ├── softsaturator13.scsyndef ├── solo13.scsyndef ├── solochannel13.scsyndef ├── spectralmorph.scsyndef ├── spectralmorph2.scsyndef ├── squine13.scsyndef ├── steampipe.scsyndef ├── steampipe13.scsyndef ├── steeldrum.scsyndef ├── stereomix.scsyndef ├── stereomix13.scsyndef ├── stereomix6.scsyndef ├── stereopan13.scsyndef ├── stereopan6.scsyndef ├── stereopan78.scsyndef ├── stutter.scsyndef ├── stutter13.scsyndef ├── stutter13_bak.scsyndef ├── superpulse13.scsyndef ├── supersaw13.scsyndef ├── supersaw6.scsyndef ├── supersaw78.scsyndef ├── supersquine13.scsyndef ├── syncsaw.scsyndef ├── syncsaw13.scsyndef ├── syncsawmono.scsyndef ├── tanh13.scsyndef ├── tankreverb13.scsyndef ├── tb303.scsyndef ├── tb30313.scsyndef ├── tb303mono.scsyndef ├── testmc.scsyndef ├── transientshaper13.scsyndef ├── tremolo13.scsyndef ├── unrectify.scsyndef ├── vadimfilter13.scsyndef ├── vectorsynth13.scsyndef ├── vectorsynth13b.scsyndef ├── vibrato13.scsyndef ├── vocoder.scsyndef ├── wavefold13.scsyndef ├── waveshaper13.scsyndef ├── woodblock13.scsyndef ├── woodenbar13.scsyndef ├── woodwind13.scsyndef ├── wtsynth13.scsyndef ├── xpanaz13.scsyndef └── xpanaz78to13.scsyndef /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/README.md -------------------------------------------------------------------------------- /SCD_V2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/bias.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/bias.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/distort.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/distort.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/fattener.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/fattener.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/hardclip.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/hardclip.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/roar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/roar.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/shaperos.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/shaperos.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/tanh.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/tanh.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Distortion/wavefold.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Distortion/wavefold.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/Sanitize.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/Sanitize.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/compressor.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/compressor.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/gain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/gain.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/limiter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/limiter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/lineargain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/lineargain.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/maximizer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/maximizer.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/noisegate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/noisegate.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Dynamics/sidechain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Dynamics/sidechain.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Eq/EQ5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Eq/EQ5.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Eq/harmonicExciter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Eq/harmonicExciter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/DJFilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/DJFilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/HPF.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/HPF.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/LPF.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/LPF.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/autowah.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/autowah.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/bandpass.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/bandpass.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/bandpassbank.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/bandpassbank.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/comb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/comb.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/combfeed.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/combfeed.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/filter4pole.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/filter4pole.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/ladderfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/ladderfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/moogfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/moogfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/moogvcf.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/moogvcf.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/notch.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/notch.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/peakfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/peakfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/satfmfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/satfmfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/slinkfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/slinkfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/vadimfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/vadimfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Filter/vowelfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Filter/vowelfilter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Modulation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Modulation/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Modulation/ampmod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Modulation/ampmod.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Modulation/ringmod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Modulation/ringmod.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Modulation/tremolo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Modulation/tremolo.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Modulation/vibrato.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Modulation/vibrato.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Pitch/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Pitch/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Pitch/FreqShifter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Pitch/FreqShifter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Pitch/PitchShifter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Pitch/PitchShifter.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Pitch/octavedown.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Pitch/octavedown.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Resonators/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Resonators/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Resonators/ratios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Resonators/ratios.txt -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/PV_Blur.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/PV_Blur.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/PV_Morph.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/PV_Morph.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/blur.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/blur.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/freqblur.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/freqblur.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/freqwarp.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/freqwarp.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/vocoder.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/vocoder.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Spectral/vocoderMax.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Spectral/vocoderMax.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/delay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/delay.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/echo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/echo.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/echoHold.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/echoHold.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/echospat.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/echospat.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/fftdelay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/fftdelay.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Delay/overdub.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Delay/overdub.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Freeze/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Freeze/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Freeze/freeze.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Freeze/freeze.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Looping/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Looping/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Looping/Looper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Looping/Looper.scd -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Phase/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Phase/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Effect/Time/Phase/chorus.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Effect/Time/Phase/chorus.scd -------------------------------------------------------------------------------- /SCD_V2/InOut/input.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/InOut/input.scd -------------------------------------------------------------------------------- /SCD_V2/KR/a2k.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/a2k.scd -------------------------------------------------------------------------------- /SCD_V2/KR/beattracker.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/beattracker.scd -------------------------------------------------------------------------------- /SCD_V2/KR/bufalloc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/bufalloc.scd -------------------------------------------------------------------------------- /SCD_V2/KR/bufferscope.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/bufferscope.scd -------------------------------------------------------------------------------- /SCD_V2/KR/function.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/function.scd -------------------------------------------------------------------------------- /SCD_V2/KR/info.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/info.scd -------------------------------------------------------------------------------- /SCD_V2/KR/mergebuf.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/mergebuf.scd -------------------------------------------------------------------------------- /SCD_V2/KR/output.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/output.scd -------------------------------------------------------------------------------- /SCD_V2/KR/output_stereomix.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/output_stereomix.scd -------------------------------------------------------------------------------- /SCD_V2/KR/pitchtracker.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/pitchtracker.scd -------------------------------------------------------------------------------- /SCD_V2/KR/polymixer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/polymixer.scd -------------------------------------------------------------------------------- /SCD_V2/KR/recbuf.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/recbuf.scd -------------------------------------------------------------------------------- /SCD_V2/KR/recbuffhold.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/recbuffhold.scd -------------------------------------------------------------------------------- /SCD_V2/KR/wavescope.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/wavescope.scd -------------------------------------------------------------------------------- /SCD_V2/KR/wavescope2.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/KR/wavescope2.scd -------------------------------------------------------------------------------- /SCD_V2/Mixing/crossFadeAB.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Mixing/crossFadeAB.scd -------------------------------------------------------------------------------- /SCD_V2/Mixing/mixer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Mixing/mixer.scd -------------------------------------------------------------------------------- /SCD_V2/Mixing/polymixer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Mixing/polymixer.scd -------------------------------------------------------------------------------- /SCD_V2/Modulation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Modulation/LFO/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/LFO/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Modulation/LFO/lfo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/LFO/lfo.scd -------------------------------------------------------------------------------- /SCD_V2/Modulation/LFO/morphlfo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/LFO/morphlfo.scd -------------------------------------------------------------------------------- /SCD_V2/Modulation/Ramps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/Ramps/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Modulation/Ramps/phasor.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/Ramps/phasor.scd -------------------------------------------------------------------------------- /SCD_V2/Modulation/Ramps/ramp.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Modulation/Ramps/ramp.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/4x4matrix.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/4x4matrix.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/channelmapper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/channelmapper.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/channelrouter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/channelrouter.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/channelsolo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/channelsolo.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/crossover.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/crossover.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/ntom.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/ntom.scd -------------------------------------------------------------------------------- /SCD_V2/Routing/shiftChannel.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Routing/shiftChannel.scd -------------------------------------------------------------------------------- /SCD_V2/Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/MorphOsc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/MorphOsc.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/analog.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/analog.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/blit.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/blit.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/simplesaw.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/simplesaw.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/squine.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/squine.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Analog/supersaw.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Analog/supersaw.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Chaotic/chaotic.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Chaotic/chaotic.scd -------------------------------------------------------------------------------- /SCD_V2/Source/FM/FM2op.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/FM/FM2op.scd -------------------------------------------------------------------------------- /SCD_V2/Source/FM/FMFeedback.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/FM/FMFeedback.scd -------------------------------------------------------------------------------- /SCD_V2/Source/FM/fmgrain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/FM/fmgrain.scd -------------------------------------------------------------------------------- /SCD_V2/Source/FM/kontour.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/FM/kontour.scd -------------------------------------------------------------------------------- /SCD_V2/Source/FM/pmod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/FM/pmod.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Feedback/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Feedback/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Feedback/fbdrone.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Feedback/fbdrone.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Formants/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Formants/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Noise/click.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Noise/click.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Noise/geiger.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Noise/geiger.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Noise/noise.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Noise/noise.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Percussion/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Percussion/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Percussion/clap.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Percussion/clap.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Percussion/crash.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Percussion/crash.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Percussion/hihat.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Percussion/hihat.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Percussion/snare.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Percussion/snare.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Pulsar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Pulsar/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Pulsar/FMPulsar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Pulsar/FMPulsar.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Pulsar/Pulsar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Pulsar/Pulsar.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Pulsar/Pulsar2.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Pulsar/Pulsar2.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Pulsar/wavelet.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Pulsar/wavelet.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Sampler/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Sampler/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Sampler/vectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Sampler/vectory.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Special/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Special/bubblea.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/bubblea.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Special/bubbleb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/bubbleb.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Special/buzzbass.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/buzzbass.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Special/frumbo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/frumbo.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Special/tb303.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Special/tb303.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Stochastic/gendy.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Stochastic/gendy.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Sync/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Sync/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/Sync/HardSync.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Sync/HardSync.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Sync/SyncSaw.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Sync/SyncSaw.scd -------------------------------------------------------------------------------- /SCD_V2/Source/Vector/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/Vector/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Source/WaveTable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Source/WaveTable/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Spatial/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Spatial/MidSide/midside.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/MidSide/midside.scd -------------------------------------------------------------------------------- /SCD_V2/Spatial/Panning/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/Panning/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Spatial/Panning/dbap.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/Panning/dbap.scd -------------------------------------------------------------------------------- /SCD_V2/Spatial/Panning/panaz.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/Panning/panaz.scd -------------------------------------------------------------------------------- /SCD_V2/Spatial/Panning/panner.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/Panning/panner.scd -------------------------------------------------------------------------------- /SCD_V2/Spatial/Panning/xpanaz.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Spatial/Panning/xpanaz.scd -------------------------------------------------------------------------------- /SCD_V2/Utilities/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/Utilities/Math/logicops.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/Math/logicops.scd -------------------------------------------------------------------------------- /SCD_V2/Utilities/Math/mapper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/Math/mapper.scd -------------------------------------------------------------------------------- /SCD_V2/Utilities/Math/quantize.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/Math/quantize.scd -------------------------------------------------------------------------------- /SCD_V2/Utilities/Math/unaryop.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/Math/unaryop.scd -------------------------------------------------------------------------------- /SCD_V2/Utilities/Voicing/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/Utilities/Voicing/.DS_Store -------------------------------------------------------------------------------- /SCD_V2/VST/VSTPluginController.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/VST/VSTPluginController.sc -------------------------------------------------------------------------------- /SCD_V2/VST/vst.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/VST/vst.scd -------------------------------------------------------------------------------- /SCD_V2/VST/vst_test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/VST/vst_test.scd -------------------------------------------------------------------------------- /SCD_V2/mainDefinitions.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/mainDefinitions.scd -------------------------------------------------------------------------------- /SCD_V2/reference_scd/analog.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/reference_scd/analog.scd -------------------------------------------------------------------------------- /SCD_V2/reference_scd/panner.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/SCD_V2/reference_scd/panner.scd -------------------------------------------------------------------------------- /categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/categories.txt -------------------------------------------------------------------------------- /hacked_UGENS/OteyPianoUGens.scx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/hacked_UGENS/OteyPianoUGens.scx -------------------------------------------------------------------------------- /json/Synthdefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/json/Synthdefs.json -------------------------------------------------------------------------------- /scd/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/.DS_Store -------------------------------------------------------------------------------- /scd/808.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/808.scd -------------------------------------------------------------------------------- /scd/FM2op.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/FM2op.scd -------------------------------------------------------------------------------- /scd/SIGNES78.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/SIGNES78.scd -------------------------------------------------------------------------------- /scd/SIGNES78_novarlag.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/SIGNES78_novarlag.scd -------------------------------------------------------------------------------- /scd/abstractDrum.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/abstractDrum.scd -------------------------------------------------------------------------------- /scd/additive.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/additive.scd -------------------------------------------------------------------------------- /scd/additivecomb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/additivecomb.scd -------------------------------------------------------------------------------- /scd/advancedreverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/advancedreverb.scd -------------------------------------------------------------------------------- /scd/aliasingSynth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/aliasingSynth.scd -------------------------------------------------------------------------------- /scd/ampmod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/ampmod.scd -------------------------------------------------------------------------------- /scd/analog.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/analog.scd -------------------------------------------------------------------------------- /scd/asymparsat.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/asymparsat.scd -------------------------------------------------------------------------------- /scd/audioinput.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/audioinput.scd -------------------------------------------------------------------------------- /scd/bandpass78.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/bandpass78.scd -------------------------------------------------------------------------------- /scd/baschet.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/baschet.scd -------------------------------------------------------------------------------- /scd/beatrepeat.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/beatrepeat.scd -------------------------------------------------------------------------------- /scd/beatslicer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/beatslicer.scd -------------------------------------------------------------------------------- /scd/beattrack.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/beattrack.scd -------------------------------------------------------------------------------- /scd/bells.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/bells.scd -------------------------------------------------------------------------------- /scd/blit.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/blit.scd -------------------------------------------------------------------------------- /scd/blur.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/blur.scd -------------------------------------------------------------------------------- /scd/bowpluck.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/bowpluck.scd -------------------------------------------------------------------------------- /scd/brass.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/brass.scd -------------------------------------------------------------------------------- /scd/brushedcymbal.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/brushedcymbal.scd -------------------------------------------------------------------------------- /scd/bubble.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/bubble.scd -------------------------------------------------------------------------------- /scd/buzzbass.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/buzzbass.scd -------------------------------------------------------------------------------- /scd/campaneitor_collection.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/campaneitor_collection.scd -------------------------------------------------------------------------------- /scd/campaneitor_signes.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/campaneitor_signes.scd -------------------------------------------------------------------------------- /scd/channelshift.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/channelshift.scd -------------------------------------------------------------------------------- /scd/chorus.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/chorus.scd -------------------------------------------------------------------------------- /scd/circularbuffer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/circularbuffer.scd -------------------------------------------------------------------------------- /scd/click.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/click.scd -------------------------------------------------------------------------------- /scd/combfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/combfilter.scd -------------------------------------------------------------------------------- /scd/compressor.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/compressor.scd -------------------------------------------------------------------------------- /scd/convolution.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/convolution.scd -------------------------------------------------------------------------------- /scd/crossfadeloopsampler.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/crossfadeloopsampler.scd -------------------------------------------------------------------------------- /scd/cymbal.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/cymbal.scd -------------------------------------------------------------------------------- /scd/cymbalpad.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/cymbalpad.scd -------------------------------------------------------------------------------- /scd/dbap.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/dbap.scd -------------------------------------------------------------------------------- /scd/dccorrection.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/dccorrection.scd -------------------------------------------------------------------------------- /scd/decimator.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/decimator.scd -------------------------------------------------------------------------------- /scd/delay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/delay.scd -------------------------------------------------------------------------------- /scd/distort.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/distort.scd -------------------------------------------------------------------------------- /scd/doppler.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/doppler.scd -------------------------------------------------------------------------------- /scd/dwgflute.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/dwgflute.scd -------------------------------------------------------------------------------- /scd/dynklang.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/dynklang.scd -------------------------------------------------------------------------------- /scd/dynklank.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/dynklank.scd -------------------------------------------------------------------------------- /scd/echo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/echo.scd -------------------------------------------------------------------------------- /scd/envelope.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/envelope.scd -------------------------------------------------------------------------------- /scd/eq.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/eq.scd -------------------------------------------------------------------------------- /scd/fbdrone.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fbdrone.scd -------------------------------------------------------------------------------- /scd/feedback.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/feedback.scd -------------------------------------------------------------------------------- /scd/feedosc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/feedosc.scd -------------------------------------------------------------------------------- /scd/fft.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fft.scd -------------------------------------------------------------------------------- /scd/fftdelay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fftdelay.scd -------------------------------------------------------------------------------- /scd/fftstretch.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fftstretch.scd -------------------------------------------------------------------------------- /scd/filter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/filter.scd -------------------------------------------------------------------------------- /scd/filter4pole.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/filter4pole.scd -------------------------------------------------------------------------------- /scd/flanger.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/flanger.scd -------------------------------------------------------------------------------- /scd/flute.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/flute.scd -------------------------------------------------------------------------------- /scd/fm1op.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fm1op.scd -------------------------------------------------------------------------------- /scd/fm4op.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fm4op.scd -------------------------------------------------------------------------------- /scd/fmcomplex.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fmcomplex.scd -------------------------------------------------------------------------------- /scd/fmformants.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fmformants.scd -------------------------------------------------------------------------------- /scd/fmperc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fmperc.scd -------------------------------------------------------------------------------- /scd/fmpulsar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/fmpulsar.scd -------------------------------------------------------------------------------- /scd/formants.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/formants.scd -------------------------------------------------------------------------------- /scd/forms.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/forms.scd -------------------------------------------------------------------------------- /scd/frameDrum.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/frameDrum.scd -------------------------------------------------------------------------------- /scd/freeverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/freeverb.scd -------------------------------------------------------------------------------- /scd/freeze.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/freeze.scd -------------------------------------------------------------------------------- /scd/freqshifter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/freqshifter.scd -------------------------------------------------------------------------------- /scd/frumbo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/frumbo.scd -------------------------------------------------------------------------------- /scd/gain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/gain.scd -------------------------------------------------------------------------------- /scd/gamelan.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/gamelan.scd -------------------------------------------------------------------------------- /scd/gong.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/gong.scd -------------------------------------------------------------------------------- /scd/grain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/grain.scd -------------------------------------------------------------------------------- /scd/grainclouddelay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/grainclouddelay.scd -------------------------------------------------------------------------------- /scd/grainclouddelay_ok.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/grainclouddelay_ok.scd -------------------------------------------------------------------------------- /scd/graindelay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/graindelay.scd -------------------------------------------------------------------------------- /scd/grainfreeze.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/grainfreeze.scd -------------------------------------------------------------------------------- /scd/grainsampler.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/grainsampler.scd -------------------------------------------------------------------------------- /scd/granular_reverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/granular_reverb.scd -------------------------------------------------------------------------------- /scd/guttersynth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/guttersynth.scd -------------------------------------------------------------------------------- /scd/handpan.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/handpan.scd -------------------------------------------------------------------------------- /scd/hardclip.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/hardclip.scd -------------------------------------------------------------------------------- /scd/hardsync.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/hardsync.scd -------------------------------------------------------------------------------- /scd/holdreverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/holdreverb.scd -------------------------------------------------------------------------------- /scd/ikedabass.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/ikedabass.scd -------------------------------------------------------------------------------- /scd/info.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/info.scd -------------------------------------------------------------------------------- /scd/junkperc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/junkperc.scd -------------------------------------------------------------------------------- /scd/kalimba.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/kalimba.scd -------------------------------------------------------------------------------- /scd/karplus.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/karplus.scd -------------------------------------------------------------------------------- /scd/kickbestia.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/kickbestia.scd -------------------------------------------------------------------------------- /scd/kickdrum.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/kickdrum.scd -------------------------------------------------------------------------------- /scd/kickdrumb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/kickdrumb.scd -------------------------------------------------------------------------------- /scd/kickdrumc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/kickdrumc.scd -------------------------------------------------------------------------------- /scd/lfo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/lfo.scd -------------------------------------------------------------------------------- /scd/limiter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/limiter.scd -------------------------------------------------------------------------------- /scd/lissajous.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/lissajous.scd -------------------------------------------------------------------------------- /scd/looper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/looper.scd -------------------------------------------------------------------------------- /scd/mallet.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/mallet.scd -------------------------------------------------------------------------------- /scd/marimba.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/marimba.scd -------------------------------------------------------------------------------- /scd/materials_modal.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/materials_modal.scd -------------------------------------------------------------------------------- /scd/mdapiano.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/mdapiano.scd -------------------------------------------------------------------------------- /scd/membrane.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/membrane.scd -------------------------------------------------------------------------------- /scd/metal.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/metal.scd -------------------------------------------------------------------------------- /scd/metalPlate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/metalPlate.scd -------------------------------------------------------------------------------- /scd/miniklang.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/miniklang.scd -------------------------------------------------------------------------------- /scd/mixer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/mixer.scd -------------------------------------------------------------------------------- /scd/monoize.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/monoize.scd -------------------------------------------------------------------------------- /scd/monoto.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/monoto.scd -------------------------------------------------------------------------------- /scd/moogfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/moogfilter.scd -------------------------------------------------------------------------------- /scd/moogvcf.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/moogvcf.scd -------------------------------------------------------------------------------- /scd/morphosc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/morphosc.scd -------------------------------------------------------------------------------- /scd/multar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/multar.scd -------------------------------------------------------------------------------- /scd/multibanddistortion13.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/multibanddistortion13.scd -------------------------------------------------------------------------------- /scd/multiplier.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/multiplier.scd -------------------------------------------------------------------------------- /scd/noise.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/noise.scd -------------------------------------------------------------------------------- /scd/noisegate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/noisegate.scd -------------------------------------------------------------------------------- /scd/notch.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/notch.scd -------------------------------------------------------------------------------- /scd/output.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/output.scd -------------------------------------------------------------------------------- /scd/panaz.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/panaz.scd -------------------------------------------------------------------------------- /scd/panner.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/panner.scd -------------------------------------------------------------------------------- /scd/paulstretch.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/paulstretch.scd -------------------------------------------------------------------------------- /scd/peakfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/peakfilter.scd -------------------------------------------------------------------------------- /scd/percmembrane.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/percmembrane.scd -------------------------------------------------------------------------------- /scd/phaseinvert.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/phaseinvert.scd -------------------------------------------------------------------------------- /scd/phasemod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/phasemod.scd -------------------------------------------------------------------------------- /scd/phaser.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/phaser.scd -------------------------------------------------------------------------------- /scd/phasor.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/phasor.scd -------------------------------------------------------------------------------- /scd/piano.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/piano.scd -------------------------------------------------------------------------------- /scd/pitchdelay13.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pitchdelay13.scd -------------------------------------------------------------------------------- /scd/pitchshift.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pitchshift.scd -------------------------------------------------------------------------------- /scd/pluck.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pluck.scd -------------------------------------------------------------------------------- /scd/polymixer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/polymixer.scd -------------------------------------------------------------------------------- /scd/polymute.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/polymute.scd -------------------------------------------------------------------------------- /scd/prayerbell.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/prayerbell.scd -------------------------------------------------------------------------------- /scd/pulsar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pulsar.scd -------------------------------------------------------------------------------- /scd/pulsar2.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pulsar2.scd -------------------------------------------------------------------------------- /scd/pulsar3.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/pulsar3.scd -------------------------------------------------------------------------------- /scd/rave.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/rave.scd -------------------------------------------------------------------------------- /scd/realisticsnare.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/realisticsnare.scd -------------------------------------------------------------------------------- /scd/recorder.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/recorder.scd -------------------------------------------------------------------------------- /scd/recursion.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/recursion.scd -------------------------------------------------------------------------------- /scd/resonator.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/resonator.scd -------------------------------------------------------------------------------- /scd/reverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/reverb.scd -------------------------------------------------------------------------------- /scd/rhythmicmute.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/rhythmicmute.scd -------------------------------------------------------------------------------- /scd/ringmod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/ringmod.scd -------------------------------------------------------------------------------- /scd/ringz.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/ringz.scd -------------------------------------------------------------------------------- /scd/rotatetranslate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/rotatetranslate.scd -------------------------------------------------------------------------------- /scd/sampler.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/sampler.scd -------------------------------------------------------------------------------- /scd/satfmfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/satfmfilter.scd -------------------------------------------------------------------------------- /scd/shapers.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/shapers.scd -------------------------------------------------------------------------------- /scd/sidechain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/sidechain.scd -------------------------------------------------------------------------------- /scd/simplereverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/simplereverb.scd -------------------------------------------------------------------------------- /scd/sinefeed.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/sinefeed.scd -------------------------------------------------------------------------------- /scd/sineshaper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/sineshaper.scd -------------------------------------------------------------------------------- /scd/sitar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/sitar.scd -------------------------------------------------------------------------------- /scd/slicer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/slicer.scd -------------------------------------------------------------------------------- /scd/softsaturator.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/softsaturator.scd -------------------------------------------------------------------------------- /scd/solochannel.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/solochannel.scd -------------------------------------------------------------------------------- /scd/spectralmorph.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/spectralmorph.scd -------------------------------------------------------------------------------- /scd/squine.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/squine.scd -------------------------------------------------------------------------------- /scd/steampipe.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/steampipe.scd -------------------------------------------------------------------------------- /scd/steelDrum.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/steelDrum.scd -------------------------------------------------------------------------------- /scd/stereomix.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/stereomix.scd -------------------------------------------------------------------------------- /scd/stereopan13.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/stereopan13.scd -------------------------------------------------------------------------------- /scd/stutter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/stutter.scd -------------------------------------------------------------------------------- /scd/superfm.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/superfm.scd -------------------------------------------------------------------------------- /scd/supersaw.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/supersaw.scd -------------------------------------------------------------------------------- /scd/syncsaw.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/syncsaw.scd -------------------------------------------------------------------------------- /scd/tankreverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/tankreverb.scd -------------------------------------------------------------------------------- /scd/tapedelay.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/tapedelay.scd -------------------------------------------------------------------------------- /scd/tb303.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/tb303.scd -------------------------------------------------------------------------------- /scd/testmc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/testmc.scd -------------------------------------------------------------------------------- /scd/timpani.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/timpani.scd -------------------------------------------------------------------------------- /scd/transientshaper.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/transientshaper.scd -------------------------------------------------------------------------------- /scd/tremolo.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/tremolo.scd -------------------------------------------------------------------------------- /scd/vadimfilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/vadimfilter.scd -------------------------------------------------------------------------------- /scd/vectorsynth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/vectorsynth.scd -------------------------------------------------------------------------------- /scd/vibrato.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/vibrato.scd -------------------------------------------------------------------------------- /scd/vocoder.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/vocoder.scd -------------------------------------------------------------------------------- /scd/wavefold.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/wavefold.scd -------------------------------------------------------------------------------- /scd/waveform.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/waveform.scd -------------------------------------------------------------------------------- /scd/woodblocks.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/woodblocks.scd -------------------------------------------------------------------------------- /scd/woodwind.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/woodwind.scd -------------------------------------------------------------------------------- /scd/wtsynth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/scd/wtsynth.scd -------------------------------------------------------------------------------- /synthdef/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/.DS_Store -------------------------------------------------------------------------------- /synthdef/Info/Info1.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info1.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info10.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info10.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info100.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info100.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info11.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info11.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info12.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info12.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info13.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info14.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info14.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info15.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info15.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info16.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info16.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info17.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info17.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info18.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info18.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info19.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info19.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info2.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info20.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info20.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info21.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info21.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info22.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info22.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info23.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info23.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info24.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info24.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info25.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info25.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info26.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info26.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info27.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info27.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info28.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info28.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info29.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info29.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info3.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info3.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info30.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info30.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info31.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info31.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info32.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info32.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info33.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info33.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info34.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info34.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info35.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info35.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info36.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info36.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info37.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info37.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info38.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info38.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info39.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info39.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info4.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info4.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info40.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info40.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info41.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info41.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info42.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info42.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info43.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info43.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info44.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info44.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info45.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info45.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info46.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info46.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info47.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info47.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info48.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info48.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info49.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info49.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info5.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info5.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info50.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info50.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info51.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info51.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info52.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info52.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info53.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info53.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info54.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info54.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info55.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info55.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info56.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info56.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info57.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info57.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info58.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info58.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info59.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info59.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info6.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info60.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info60.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info61.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info61.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info62.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info62.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info63.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info63.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info64.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info64.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info65.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info65.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info66.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info66.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info67.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info67.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info68.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info68.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info69.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info69.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info7.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info7.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info70.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info70.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info71.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info71.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info72.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info72.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info73.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info73.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info74.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info74.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info75.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info75.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info76.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info76.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info77.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info77.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info78.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info79.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info79.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info8.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info8.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info80.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info80.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info81.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info81.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info82.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info82.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info83.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info83.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info84.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info84.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info85.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info85.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info86.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info86.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info87.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info87.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info88.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info88.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info89.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info89.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info9.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info9.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info90.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info90.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info91.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info91.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info92.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info92.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info93.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info93.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info94.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info94.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info95.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info95.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info96.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info96.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info97.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info97.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info98.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info98.scsyndef -------------------------------------------------------------------------------- /synthdef/Info/Info99.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/Info/Info99.scsyndef -------------------------------------------------------------------------------- /synthdef/abstractdrum.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/abstractdrum.scsyndef -------------------------------------------------------------------------------- /synthdef/additive13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/additive13.scsyndef -------------------------------------------------------------------------------- /synthdef/additivecomb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/additivecomb.scsyndef -------------------------------------------------------------------------------- /synthdef/advancedeverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/advancedeverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/advancedreverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/advancedreverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/aliasingsynth13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/aliasingsynth13.scsyndef -------------------------------------------------------------------------------- /synthdef/aliasingsynth13b.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/aliasingsynth13b.scsyndef -------------------------------------------------------------------------------- /synthdef/aliasingsynth13c.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/aliasingsynth13c.scsyndef -------------------------------------------------------------------------------- /synthdef/aliasingsynth13d.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/aliasingsynth13d.scsyndef -------------------------------------------------------------------------------- /synthdef/ampmod.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ampmod.scsyndef -------------------------------------------------------------------------------- /synthdef/ampmod13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ampmod13.scsyndef -------------------------------------------------------------------------------- /synthdef/ampmodb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ampmodb13.scsyndef -------------------------------------------------------------------------------- /synthdef/ampmodmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ampmodmono.scsyndef -------------------------------------------------------------------------------- /synthdef/analog.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog.scsyndef -------------------------------------------------------------------------------- /synthdef/analog13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog13.scsyndef -------------------------------------------------------------------------------- /synthdef/analog13ar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog13ar.scsyndef -------------------------------------------------------------------------------- /synthdef/analog2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog2.scsyndef -------------------------------------------------------------------------------- /synthdef/analog48.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog48.scsyndef -------------------------------------------------------------------------------- /synthdef/analog9.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analog9.scsyndef -------------------------------------------------------------------------------- /synthdef/analogmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/analogmono.scsyndef -------------------------------------------------------------------------------- /synthdef/asymparsat13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/asymparsat13.scsyndef -------------------------------------------------------------------------------- /synthdef/audioinput.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/audioinput.scsyndef -------------------------------------------------------------------------------- /synthdef/audioinput13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/audioinput13.scsyndef -------------------------------------------------------------------------------- /synthdef/audioinput2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/audioinput2.scsyndef -------------------------------------------------------------------------------- /synthdef/audioinput6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/audioinput6.scsyndef -------------------------------------------------------------------------------- /synthdef/autotrack.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/autotrack.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass1080.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass1080.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass13.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass256.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass256.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass256_13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass256_13.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass32_13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass32_13.scsyndef -------------------------------------------------------------------------------- /synthdef/bandpass78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bandpass78.scsyndef -------------------------------------------------------------------------------- /synthdef/beatrepeat13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/beatrepeat13.scsyndef -------------------------------------------------------------------------------- /synthdef/bells13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bells13.scsyndef -------------------------------------------------------------------------------- /synthdef/binshift.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/binshift.scsyndef -------------------------------------------------------------------------------- /synthdef/blit13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/blit13.scsyndef -------------------------------------------------------------------------------- /synthdef/bow13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bow13.scsyndef -------------------------------------------------------------------------------- /synthdef/bowedcrystal13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bowedcrystal13.scsyndef -------------------------------------------------------------------------------- /synthdef/brass13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/brass13.scsyndef -------------------------------------------------------------------------------- /synthdef/brickwallfilter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/brickwallfilter.scsyndef -------------------------------------------------------------------------------- /synthdef/brushedcymbal13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/brushedcymbal13.scsyndef -------------------------------------------------------------------------------- /synthdef/bubblea.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bubblea.scsyndef -------------------------------------------------------------------------------- /synthdef/bubbleb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/bubbleb.scsyndef -------------------------------------------------------------------------------- /synthdef/buzz13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/buzz13.scsyndef -------------------------------------------------------------------------------- /synthdef/campaneitorunna.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/campaneitorunna.scsyndef -------------------------------------------------------------------------------- /synthdef/channelshift13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/channelshift13.scsyndef -------------------------------------------------------------------------------- /synthdef/chinesegong13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chinesegong13.scsyndef -------------------------------------------------------------------------------- /synthdef/chorus.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorus.scsyndef -------------------------------------------------------------------------------- /synthdef/chorus13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorus13.scsyndef -------------------------------------------------------------------------------- /synthdef/chorus6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorus6.scsyndef -------------------------------------------------------------------------------- /synthdef/chorusb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorusb13.scsyndef -------------------------------------------------------------------------------- /synthdef/chorusb78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorusb78.scsyndef -------------------------------------------------------------------------------- /synthdef/chorusmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/chorusmono.scsyndef -------------------------------------------------------------------------------- /synthdef/circularbuffer13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/circularbuffer13.scsyndef -------------------------------------------------------------------------------- /synthdef/click.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/click.scsyndef -------------------------------------------------------------------------------- /synthdef/click13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/click13.scsyndef -------------------------------------------------------------------------------- /synthdef/clickmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/clickmono.scsyndef -------------------------------------------------------------------------------- /synthdef/comb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/comb.scsyndef -------------------------------------------------------------------------------- /synthdef/comb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/comb13.scsyndef -------------------------------------------------------------------------------- /synthdef/comb48.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/comb48.scsyndef -------------------------------------------------------------------------------- /synthdef/comb6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/comb6.scsyndef -------------------------------------------------------------------------------- /synthdef/combfeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/combfeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/combmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/combmono.scsyndef -------------------------------------------------------------------------------- /synthdef/compressor.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/compressor.scsyndef -------------------------------------------------------------------------------- /synthdef/compressor13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/compressor13.scsyndef -------------------------------------------------------------------------------- /synthdef/compressorb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/compressorb13.scsyndef -------------------------------------------------------------------------------- /synthdef/compressormono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/compressormono.scsyndef -------------------------------------------------------------------------------- /synthdef/cristalbaschet13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/cristalbaschet13.scsyndef -------------------------------------------------------------------------------- /synthdef/crosslooper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/crosslooper13.scsyndef -------------------------------------------------------------------------------- /synthdef/crosslooper2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/crosslooper2.scsyndef -------------------------------------------------------------------------------- /synthdef/crosslooperb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/crosslooperb13.scsyndef -------------------------------------------------------------------------------- /synthdef/cymbal13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/cymbal13.scsyndef -------------------------------------------------------------------------------- /synthdef/cymbalpad13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/cymbalpad13.scsyndef -------------------------------------------------------------------------------- /synthdef/dccorrection13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dccorrection13.scsyndef -------------------------------------------------------------------------------- /synthdef/decimator.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/decimator.scsyndef -------------------------------------------------------------------------------- /synthdef/delay.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/delay.scsyndef -------------------------------------------------------------------------------- /synthdef/delay13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/delay13.scsyndef -------------------------------------------------------------------------------- /synthdef/delay2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/delay2.scsyndef -------------------------------------------------------------------------------- /synthdef/delay78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/delay78.scsyndef -------------------------------------------------------------------------------- /synthdef/delayfeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/delayfeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/distort.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/distort.scsyndef -------------------------------------------------------------------------------- /synthdef/distort13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/distort13.scsyndef -------------------------------------------------------------------------------- /synthdef/distortmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/distortmono.scsyndef -------------------------------------------------------------------------------- /synthdef/dwgclarinet13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dwgclarinet13.scsyndef -------------------------------------------------------------------------------- /synthdef/dwgflute13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dwgflute13.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklang.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklang.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklang13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklang13.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklangmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklangmono.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklank.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklank.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklank13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklank13.scsyndef -------------------------------------------------------------------------------- /synthdef/dynklankmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/dynklankmono.scsyndef -------------------------------------------------------------------------------- /synthdef/echo.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/echo.scsyndef -------------------------------------------------------------------------------- /synthdef/echo13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/echo13.scsyndef -------------------------------------------------------------------------------- /synthdef/echo2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/echo2.scsyndef -------------------------------------------------------------------------------- /synthdef/echomono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/echomono.scsyndef -------------------------------------------------------------------------------- /synthdef/echospat13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/echospat13.scsyndef -------------------------------------------------------------------------------- /synthdef/envelope13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/envelope13.scsyndef -------------------------------------------------------------------------------- /synthdef/eq.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/eq.scsyndef -------------------------------------------------------------------------------- /synthdef/eq13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/eq13.scsyndef -------------------------------------------------------------------------------- /synthdef/eqmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/eqmono.scsyndef -------------------------------------------------------------------------------- /synthdef/fbdrone13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fbdrone13.scsyndef -------------------------------------------------------------------------------- /synthdef/fbdronemod13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fbdronemod13.scsyndef -------------------------------------------------------------------------------- /synthdef/feedback.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/feedback.scsyndef -------------------------------------------------------------------------------- /synthdef/feedback13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/feedback13.scsyndef -------------------------------------------------------------------------------- /synthdef/feedbackb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/feedbackb.scsyndef -------------------------------------------------------------------------------- /synthdef/feedbackosc13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/feedbackosc13.scsyndef -------------------------------------------------------------------------------- /synthdef/fftblur.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fftblur.scsyndef -------------------------------------------------------------------------------- /synthdef/fftdelay.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fftdelay.scsyndef -------------------------------------------------------------------------------- /synthdef/fftstretch.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fftstretch.scsyndef -------------------------------------------------------------------------------- /synthdef/fftstretch2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fftstretch2.scsyndef -------------------------------------------------------------------------------- /synthdef/fftstretch6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fftstretch6.scsyndef -------------------------------------------------------------------------------- /synthdef/filter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filter.scsyndef -------------------------------------------------------------------------------- /synthdef/filter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filter13.scsyndef -------------------------------------------------------------------------------- /synthdef/filter48.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filter48.scsyndef -------------------------------------------------------------------------------- /synthdef/filter4pole13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filter4pole13.scsyndef -------------------------------------------------------------------------------- /synthdef/filter6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filter6.scsyndef -------------------------------------------------------------------------------- /synthdef/filtermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/filtermono.scsyndef -------------------------------------------------------------------------------- /synthdef/flanger.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flanger.scsyndef -------------------------------------------------------------------------------- /synthdef/flanger13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flanger13.scsyndef -------------------------------------------------------------------------------- /synthdef/flangermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flangermono.scsyndef -------------------------------------------------------------------------------- /synthdef/flangerpitch.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flangerpitch.scsyndef -------------------------------------------------------------------------------- /synthdef/flangerpitch13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flangerpitch13.scsyndef -------------------------------------------------------------------------------- /synthdef/flangerpitchmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flangerpitchmono.scsyndef -------------------------------------------------------------------------------- /synthdef/flangersync13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flangersync13.scsyndef -------------------------------------------------------------------------------- /synthdef/flute.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flute.scsyndef -------------------------------------------------------------------------------- /synthdef/flute13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flute13.scsyndef -------------------------------------------------------------------------------- /synthdef/flute2_13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/flute2_13.scsyndef -------------------------------------------------------------------------------- /synthdef/fm.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fm.scsyndef -------------------------------------------------------------------------------- /synthdef/fm13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fm13.scsyndef -------------------------------------------------------------------------------- /synthdef/fm4raw.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fm4raw.scsyndef -------------------------------------------------------------------------------- /synthdef/fmcomplex13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmcomplex13.scsyndef -------------------------------------------------------------------------------- /synthdef/fmcomplex6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmcomplex6.scsyndef -------------------------------------------------------------------------------- /synthdef/fmformant13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmformant13.scsyndef -------------------------------------------------------------------------------- /synthdef/fmmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmmono.scsyndef -------------------------------------------------------------------------------- /synthdef/fmnoise.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmnoise.scsyndef -------------------------------------------------------------------------------- /synthdef/fmperc.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmperc.scsyndef -------------------------------------------------------------------------------- /synthdef/fmpulsar13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/fmpulsar13.scsyndef -------------------------------------------------------------------------------- /synthdef/formants.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/formants.scsyndef -------------------------------------------------------------------------------- /synthdef/forms.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/forms.scsyndef -------------------------------------------------------------------------------- /synthdef/forms13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/forms13.scsyndef -------------------------------------------------------------------------------- /synthdef/forms2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/forms2.scsyndef -------------------------------------------------------------------------------- /synthdef/forms6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/forms6.scsyndef -------------------------------------------------------------------------------- /synthdef/framedrum.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/framedrum.scsyndef -------------------------------------------------------------------------------- /synthdef/freeverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freeverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/freeze.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freeze.scsyndef -------------------------------------------------------------------------------- /synthdef/freeze13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freeze13.scsyndef -------------------------------------------------------------------------------- /synthdef/freezefeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freezefeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/freezemod.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freezemod.scsyndef -------------------------------------------------------------------------------- /synthdef/freezemono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freezemono.scsyndef -------------------------------------------------------------------------------- /synthdef/freqshifter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/freqshifter.scsyndef -------------------------------------------------------------------------------- /synthdef/frequencywholes.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/frequencywholes.scsyndef -------------------------------------------------------------------------------- /synthdef/frumbo13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/frumbo13.scsyndef -------------------------------------------------------------------------------- /synthdef/gain.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/gain.scsyndef -------------------------------------------------------------------------------- /synthdef/gain13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/gain13.scsyndef -------------------------------------------------------------------------------- /synthdef/gamelan13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/gamelan13.scsyndef -------------------------------------------------------------------------------- /synthdef/glass13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/glass13.scsyndef -------------------------------------------------------------------------------- /synthdef/gongageng13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/gongageng13.scsyndef -------------------------------------------------------------------------------- /synthdef/graincloud13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/graincloud13.scsyndef -------------------------------------------------------------------------------- /synthdef/grainclouddelay.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainclouddelay.scsyndef -------------------------------------------------------------------------------- /synthdef/graindelay13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/graindelay13.scsyndef -------------------------------------------------------------------------------- /synthdef/grainfreeze.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainfreeze.scsyndef -------------------------------------------------------------------------------- /synthdef/grainpitchshift2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainpitchshift2.scsyndef -------------------------------------------------------------------------------- /synthdef/grainsampler.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainsampler.scsyndef -------------------------------------------------------------------------------- /synthdef/grainsampler13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainsampler13.scsyndef -------------------------------------------------------------------------------- /synthdef/grainsampler13b.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainsampler13b.scsyndef -------------------------------------------------------------------------------- /synthdef/grainsamplermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/grainsamplermono.scsyndef -------------------------------------------------------------------------------- /synthdef/greyholereverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/greyholereverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/guttersynth.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/guttersynth.scsyndef -------------------------------------------------------------------------------- /synthdef/handpan13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/handpan13.scsyndef -------------------------------------------------------------------------------- /synthdef/hardclip13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/hardclip13.scsyndef -------------------------------------------------------------------------------- /synthdef/hardsync13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/hardsync13.scsyndef -------------------------------------------------------------------------------- /synthdef/hardsyncblsaw13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/hardsyncblsaw13.scsyndef -------------------------------------------------------------------------------- /synthdef/hardsyncpulse13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/hardsyncpulse13.scsyndef -------------------------------------------------------------------------------- /synthdef/hardsyncsquine13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/hardsyncsquine13.scsyndef -------------------------------------------------------------------------------- /synthdef/holdreverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/holdreverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/ikedabass.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ikedabass.scsyndef -------------------------------------------------------------------------------- /synthdef/ikedabass13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ikedabass13.scsyndef -------------------------------------------------------------------------------- /synthdef/ikedabassmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ikedabassmono.scsyndef -------------------------------------------------------------------------------- /synthdef/info1.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/info1.scsyndef -------------------------------------------------------------------------------- /synthdef/info13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/info13.scsyndef -------------------------------------------------------------------------------- /synthdef/info2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/info2.scsyndef -------------------------------------------------------------------------------- /synthdef/info6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/info6.scsyndef -------------------------------------------------------------------------------- /synthdef/info78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/info78.scsyndef -------------------------------------------------------------------------------- /synthdef/jpverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/jpverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/junkperc2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/junkperc2.scsyndef -------------------------------------------------------------------------------- /synthdef/kalimba13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kalimba13.scsyndef -------------------------------------------------------------------------------- /synthdef/karplushold6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/karplushold6.scsyndef -------------------------------------------------------------------------------- /synthdef/karpluspluck13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/karpluspluck13.scsyndef -------------------------------------------------------------------------------- /synthdef/karpluspluck6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/karpluspluck6.scsyndef -------------------------------------------------------------------------------- /synthdef/kick_808.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kick_808.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrum.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrum.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrum13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrum13.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrumb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrumb.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrumb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrumb13.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrumbmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrumbmono.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrumc.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrumc.scsyndef -------------------------------------------------------------------------------- /synthdef/kickdrummono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kickdrummono.scsyndef -------------------------------------------------------------------------------- /synthdef/kontour13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/kontour13.scsyndef -------------------------------------------------------------------------------- /synthdef/ladderfilter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ladderfilter13.scsyndef -------------------------------------------------------------------------------- /synthdef/lfo13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lfo13.scsyndef -------------------------------------------------------------------------------- /synthdef/lfo6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lfo6.scsyndef -------------------------------------------------------------------------------- /synthdef/lfosync13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lfosync13.scsyndef -------------------------------------------------------------------------------- /synthdef/limiter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/limiter.scsyndef -------------------------------------------------------------------------------- /synthdef/limiter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/limiter13.scsyndef -------------------------------------------------------------------------------- /synthdef/limitermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/limitermono.scsyndef -------------------------------------------------------------------------------- /synthdef/lineargain.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lineargain.scsyndef -------------------------------------------------------------------------------- /synthdef/lineargain13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lineargain13.scsyndef -------------------------------------------------------------------------------- /synthdef/lineargain6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lineargain6.scsyndef -------------------------------------------------------------------------------- /synthdef/lineargainmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lineargainmono.scsyndef -------------------------------------------------------------------------------- /synthdef/lissajous2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/lissajous2.scsyndef -------------------------------------------------------------------------------- /synthdef/looper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/looper13.scsyndef -------------------------------------------------------------------------------- /synthdef/magabove.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/magabove.scsyndef -------------------------------------------------------------------------------- /synthdef/mallet.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mallet.scsyndef -------------------------------------------------------------------------------- /synthdef/mallet13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mallet13.scsyndef -------------------------------------------------------------------------------- /synthdef/malletdrone13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/malletdrone13.scsyndef -------------------------------------------------------------------------------- /synthdef/malletin13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/malletin13.scsyndef -------------------------------------------------------------------------------- /synthdef/marimba13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/marimba13.scsyndef -------------------------------------------------------------------------------- /synthdef/mdapiano13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mdapiano13.scsyndef -------------------------------------------------------------------------------- /synthdef/membrane.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/membrane.scsyndef -------------------------------------------------------------------------------- /synthdef/membrane13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/membrane13.scsyndef -------------------------------------------------------------------------------- /synthdef/membranefx13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/membranefx13.scsyndef -------------------------------------------------------------------------------- /synthdef/membranestereo.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/membranestereo.scsyndef -------------------------------------------------------------------------------- /synthdef/metal13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/metal13.scsyndef -------------------------------------------------------------------------------- /synthdef/miniklang.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/miniklang.scsyndef -------------------------------------------------------------------------------- /synthdef/mixer.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mixer.scsyndef -------------------------------------------------------------------------------- /synthdef/mixer13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mixer13.scsyndef -------------------------------------------------------------------------------- /synthdef/mixermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/mixermono.scsyndef -------------------------------------------------------------------------------- /synthdef/monoize13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/monoize13.scsyndef -------------------------------------------------------------------------------- /synthdef/monoize78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/monoize78.scsyndef -------------------------------------------------------------------------------- /synthdef/monoto13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/monoto13.scsyndef -------------------------------------------------------------------------------- /synthdef/monoto78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/monoto78.scsyndef -------------------------------------------------------------------------------- /synthdef/moogfilter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/moogfilter13.scsyndef -------------------------------------------------------------------------------- /synthdef/moogvcf13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/moogvcf13.scsyndef -------------------------------------------------------------------------------- /synthdef/morphosc2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/morphosc2.scsyndef -------------------------------------------------------------------------------- /synthdef/multar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/multar.scsyndef -------------------------------------------------------------------------------- /synthdef/multiplier.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/multiplier.scsyndef -------------------------------------------------------------------------------- /synthdef/multiplier13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/multiplier13.scsyndef -------------------------------------------------------------------------------- /synthdef/multipliermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/multipliermono.scsyndef -------------------------------------------------------------------------------- /synthdef/noise.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/noise.scsyndef -------------------------------------------------------------------------------- /synthdef/noise13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/noise13.scsyndef -------------------------------------------------------------------------------- /synthdef/noise13ar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/noise13ar.scsyndef -------------------------------------------------------------------------------- /synthdef/noisegate13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/noisegate13.scsyndef -------------------------------------------------------------------------------- /synthdef/noisemono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/noisemono.scsyndef -------------------------------------------------------------------------------- /synthdef/notch13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/notch13.scsyndef -------------------------------------------------------------------------------- /synthdef/oneshotsampler13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/oneshotsampler13.scsyndef -------------------------------------------------------------------------------- /synthdef/output.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/output.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz13.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz13multi.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz13multi.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz13multiar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz13multiar.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz13multihaas.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz13multihaas.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz13to6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz13to6.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz6.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz6multiar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz6multiar.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz78to13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz78to13.scsyndef -------------------------------------------------------------------------------- /synthdef/panaz78to6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panaz78to6.scsyndef -------------------------------------------------------------------------------- /synthdef/panazdoppler13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panazdoppler13.scsyndef -------------------------------------------------------------------------------- /synthdef/panazdoppler13b.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panazdoppler13b.scsyndef -------------------------------------------------------------------------------- /synthdef/panazdoppler6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panazdoppler6.scsyndef -------------------------------------------------------------------------------- /synthdef/panner13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panner13.scsyndef -------------------------------------------------------------------------------- /synthdef/panner6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/panner6.scsyndef -------------------------------------------------------------------------------- /synthdef/paramshaper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/paramshaper13.scsyndef -------------------------------------------------------------------------------- /synthdef/paulstretch2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/paulstretch2.scsyndef -------------------------------------------------------------------------------- /synthdef/peakfilter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/peakfilter13.scsyndef -------------------------------------------------------------------------------- /synthdef/percmembrane13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/percmembrane13.scsyndef -------------------------------------------------------------------------------- /synthdef/phaseinvert13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phaseinvert13.scsyndef -------------------------------------------------------------------------------- /synthdef/phaser.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phaser.scsyndef -------------------------------------------------------------------------------- /synthdef/phaser13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phaser13.scsyndef -------------------------------------------------------------------------------- /synthdef/phaserb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phaserb13.scsyndef -------------------------------------------------------------------------------- /synthdef/phaserc13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phaserc13.scsyndef -------------------------------------------------------------------------------- /synthdef/phasermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phasermono.scsyndef -------------------------------------------------------------------------------- /synthdef/phasorar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phasorar.scsyndef -------------------------------------------------------------------------------- /synthdef/phmod.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phmod.scsyndef -------------------------------------------------------------------------------- /synthdef/phmod13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phmod13.scsyndef -------------------------------------------------------------------------------- /synthdef/phmodmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/phmodmono.scsyndef -------------------------------------------------------------------------------- /synthdef/pingpongecho2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pingpongecho2.scsyndef -------------------------------------------------------------------------------- /synthdef/pitchdelay13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pitchdelay13.scsyndef -------------------------------------------------------------------------------- /synthdef/pitchshifter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pitchshifter.scsyndef -------------------------------------------------------------------------------- /synthdef/pluck.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pluck.scsyndef -------------------------------------------------------------------------------- /synthdef/pluck13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pluck13.scsyndef -------------------------------------------------------------------------------- /synthdef/pluck_in13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pluck_in13.scsyndef -------------------------------------------------------------------------------- /synthdef/polymixer.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/polymixer.scsyndef -------------------------------------------------------------------------------- /synthdef/polymixer13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/polymixer13.scsyndef -------------------------------------------------------------------------------- /synthdef/polymixer13_solo.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/polymixer13_solo.scsyndef -------------------------------------------------------------------------------- /synthdef/polymixermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/polymixermono.scsyndef -------------------------------------------------------------------------------- /synthdef/polymute13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/polymute13.scsyndef -------------------------------------------------------------------------------- /synthdef/prayerbell13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/prayerbell13.scsyndef -------------------------------------------------------------------------------- /synthdef/prayerbell2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/prayerbell2.scsyndef -------------------------------------------------------------------------------- /synthdef/proreverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/proreverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/pulsar.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pulsar.scsyndef -------------------------------------------------------------------------------- /synthdef/pulsar2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pulsar2.scsyndef -------------------------------------------------------------------------------- /synthdef/pulsefeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pulsefeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/pulsetrain.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pulsetrain.scsyndef -------------------------------------------------------------------------------- /synthdef/pulsetrain_multi.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/pulsetrain_multi.scsyndef -------------------------------------------------------------------------------- /synthdef/rave.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/rave.scsyndef -------------------------------------------------------------------------------- /synthdef/ravepercussion.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ravepercussion.scsyndef -------------------------------------------------------------------------------- /synthdef/realsnare2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/realsnare2.scsyndef -------------------------------------------------------------------------------- /synthdef/rectify.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/rectify.scsyndef -------------------------------------------------------------------------------- /synthdef/recursive13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/recursive13.scsyndef -------------------------------------------------------------------------------- /synthdef/recursive2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/recursive2.scsyndef -------------------------------------------------------------------------------- /synthdef/resonator13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/resonator13.scsyndef -------------------------------------------------------------------------------- /synthdef/reverb.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverb.scsyndef -------------------------------------------------------------------------------- /synthdef/reverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/reverb13b.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverb13b.scsyndef -------------------------------------------------------------------------------- /synthdef/reverb2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverb2.scsyndef -------------------------------------------------------------------------------- /synthdef/reverb6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverb6.scsyndef -------------------------------------------------------------------------------- /synthdef/reverbmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/reverbmono.scsyndef -------------------------------------------------------------------------------- /synthdef/rhythmicmute.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/rhythmicmute.scsyndef -------------------------------------------------------------------------------- /synthdef/ringmod.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringmod.scsyndef -------------------------------------------------------------------------------- /synthdef/ringmod13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringmod13.scsyndef -------------------------------------------------------------------------------- /synthdef/ringmodb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringmodb13.scsyndef -------------------------------------------------------------------------------- /synthdef/ringmodmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringmodmono.scsyndef -------------------------------------------------------------------------------- /synthdef/ringz13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringz13.scsyndef -------------------------------------------------------------------------------- /synthdef/ringz78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/ringz78.scsyndef -------------------------------------------------------------------------------- /synthdef/rotatetranslate.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/rotatetranslate.scsyndef -------------------------------------------------------------------------------- /synthdef/sampler.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sampler.scsyndef -------------------------------------------------------------------------------- /synthdef/sampler13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sampler13.scsyndef -------------------------------------------------------------------------------- /synthdef/samplerjump13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/samplerjump13.scsyndef -------------------------------------------------------------------------------- /synthdef/samplermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/samplermono.scsyndef -------------------------------------------------------------------------------- /synthdef/samplerstretch13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/samplerstretch13.scsyndef -------------------------------------------------------------------------------- /synthdef/samplersync13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/samplersync13.scsyndef -------------------------------------------------------------------------------- /synthdef/sampleslicer2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sampleslicer2.scsyndef -------------------------------------------------------------------------------- /synthdef/satfmfilter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/satfmfilter13.scsyndef -------------------------------------------------------------------------------- /synthdef/sawfeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sawfeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/schroedereverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/schroedereverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/shiftchannels.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/shiftchannels.scsyndef -------------------------------------------------------------------------------- /synthdef/shiftchannels13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/shiftchannels13.scsyndef -------------------------------------------------------------------------------- /synthdef/shiftchannels6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/shiftchannels6.scsyndef -------------------------------------------------------------------------------- /synthdef/sidechain13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sidechain13.scsyndef -------------------------------------------------------------------------------- /synthdef/sigmoidshaper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sigmoidshaper13.scsyndef -------------------------------------------------------------------------------- /synthdef/simplereverb6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/simplereverb6.scsyndef -------------------------------------------------------------------------------- /synthdef/sinefeed13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sinefeed13.scsyndef -------------------------------------------------------------------------------- /synthdef/sineshaper.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sineshaper.scsyndef -------------------------------------------------------------------------------- /synthdef/sineshaper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sineshaper13.scsyndef -------------------------------------------------------------------------------- /synthdef/sineshapermono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sineshapermono.scsyndef -------------------------------------------------------------------------------- /synthdef/sitar13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/sitar13.scsyndef -------------------------------------------------------------------------------- /synthdef/snare_808.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/snare_808.scsyndef -------------------------------------------------------------------------------- /synthdef/softsaturator13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/softsaturator13.scsyndef -------------------------------------------------------------------------------- /synthdef/solo13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/solo13.scsyndef -------------------------------------------------------------------------------- /synthdef/solochannel13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/solochannel13.scsyndef -------------------------------------------------------------------------------- /synthdef/spectralmorph.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/spectralmorph.scsyndef -------------------------------------------------------------------------------- /synthdef/spectralmorph2.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/spectralmorph2.scsyndef -------------------------------------------------------------------------------- /synthdef/squine13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/squine13.scsyndef -------------------------------------------------------------------------------- /synthdef/steampipe.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/steampipe.scsyndef -------------------------------------------------------------------------------- /synthdef/steampipe13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/steampipe13.scsyndef -------------------------------------------------------------------------------- /synthdef/steeldrum.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/steeldrum.scsyndef -------------------------------------------------------------------------------- /synthdef/stereomix.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereomix.scsyndef -------------------------------------------------------------------------------- /synthdef/stereomix13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereomix13.scsyndef -------------------------------------------------------------------------------- /synthdef/stereomix6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereomix6.scsyndef -------------------------------------------------------------------------------- /synthdef/stereopan13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereopan13.scsyndef -------------------------------------------------------------------------------- /synthdef/stereopan6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereopan6.scsyndef -------------------------------------------------------------------------------- /synthdef/stereopan78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stereopan78.scsyndef -------------------------------------------------------------------------------- /synthdef/stutter.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stutter.scsyndef -------------------------------------------------------------------------------- /synthdef/stutter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stutter13.scsyndef -------------------------------------------------------------------------------- /synthdef/stutter13_bak.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/stutter13_bak.scsyndef -------------------------------------------------------------------------------- /synthdef/superpulse13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/superpulse13.scsyndef -------------------------------------------------------------------------------- /synthdef/supersaw13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/supersaw13.scsyndef -------------------------------------------------------------------------------- /synthdef/supersaw6.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/supersaw6.scsyndef -------------------------------------------------------------------------------- /synthdef/supersaw78.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/supersaw78.scsyndef -------------------------------------------------------------------------------- /synthdef/supersquine13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/supersquine13.scsyndef -------------------------------------------------------------------------------- /synthdef/syncsaw.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/syncsaw.scsyndef -------------------------------------------------------------------------------- /synthdef/syncsaw13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/syncsaw13.scsyndef -------------------------------------------------------------------------------- /synthdef/syncsawmono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/syncsawmono.scsyndef -------------------------------------------------------------------------------- /synthdef/tanh13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tanh13.scsyndef -------------------------------------------------------------------------------- /synthdef/tankreverb13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tankreverb13.scsyndef -------------------------------------------------------------------------------- /synthdef/tb303.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tb303.scsyndef -------------------------------------------------------------------------------- /synthdef/tb30313.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tb30313.scsyndef -------------------------------------------------------------------------------- /synthdef/tb303mono.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tb303mono.scsyndef -------------------------------------------------------------------------------- /synthdef/testmc.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/testmc.scsyndef -------------------------------------------------------------------------------- /synthdef/tremolo13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/tremolo13.scsyndef -------------------------------------------------------------------------------- /synthdef/unrectify.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/unrectify.scsyndef -------------------------------------------------------------------------------- /synthdef/vadimfilter13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/vadimfilter13.scsyndef -------------------------------------------------------------------------------- /synthdef/vectorsynth13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/vectorsynth13.scsyndef -------------------------------------------------------------------------------- /synthdef/vectorsynth13b.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/vectorsynth13b.scsyndef -------------------------------------------------------------------------------- /synthdef/vibrato13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/vibrato13.scsyndef -------------------------------------------------------------------------------- /synthdef/vocoder.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/vocoder.scsyndef -------------------------------------------------------------------------------- /synthdef/wavefold13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/wavefold13.scsyndef -------------------------------------------------------------------------------- /synthdef/waveshaper13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/waveshaper13.scsyndef -------------------------------------------------------------------------------- /synthdef/woodblock13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/woodblock13.scsyndef -------------------------------------------------------------------------------- /synthdef/woodenbar13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/woodenbar13.scsyndef -------------------------------------------------------------------------------- /synthdef/woodwind13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/woodwind13.scsyndef -------------------------------------------------------------------------------- /synthdef/wtsynth13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/wtsynth13.scsyndef -------------------------------------------------------------------------------- /synthdef/xpanaz13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/xpanaz13.scsyndef -------------------------------------------------------------------------------- /synthdef/xpanaz78to13.scsyndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaymodesStudio/oceanodeSynthdefs/HEAD/synthdef/xpanaz78to13.scsyndef --------------------------------------------------------------------------------