Skip to content

Commit 5f28f95

Browse files
committed
Updated README
1 parent e7f3be3 commit 5f28f95

File tree

2 files changed

+67
-7
lines changed

2 files changed

+67
-7
lines changed

Package.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ let package = Package(
1212
.package(url: "https://github.com/AudioKit/AudioKit", .branch("develop")),
1313
],
1414
targets: [
15-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
16-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
1715
.target(name: "Soundpipe",
1816
dependencies: ["KissFFT"],
1917
exclude: ["lib/inih/LICENSE.txt"],

README.md

Lines changed: 67 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,76 @@
88

99
This extension to AudioKit has the majority of old versions of AudioKit's DSP including oscillators, physical models, filters, reverbs and more.
1010

11-
## Documentation
12-
13-
The Githbub [Wiki](https://github.com/AudioKit/SoundpipeAudioKit/wiki) hosts the documentation for this project.
14-
1511
## Examples
1612

1713
See the [AudioKit Cookbook](https://github.com/AudioKit/Cookbook/) for examples.
1814

1915
## Installation
2016

21-
Point your Swift Package Manager to this URL.
17+
Use Swift Package Manageer and point to the URL: Github URL: https://github.com/AudioKit/SoundpipeAudioKit/
18+
19+
## Targets
20+
21+
| Name | Description | Language |
22+
|--------------------|-------------------------------------------------------------|---------------|
23+
| SoundpipeAudioKit | API for using Soundpipe-powered Audio Units | Swift |
24+
| CSoundpipeAudioKit | Audio Units for the Soundpipe DSP | Objective-C++ |
25+
| Soundpipe | Low-level DSP for oscillators, physcial models, and effects | C |
26+
27+
## Generators / Instruments
28+
29+
* [Brownian Noise](https://github.com/AudioKit/SoundpipeAudioKit/wiki/BrownianNoise)
30+
* [Drip](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Drip)
31+
* [Dynamic Oscillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/DynamicOscillator)
32+
* [FM Oscillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/FMOscillator)
33+
* [Metal Bar](https://github.com/AudioKit/SoundpipeAudioKit/wiki/MetalBar)
34+
* [Morphing Oscillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/MorphingOscillator)
35+
* [Oscillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Oscillator)
36+
* [PWM Oscillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PWMOscillator)
37+
* [Phase DistortionO scillator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PhaseDistortionOscillator)
38+
* [Phase Locked Vocoder](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PhaseLockedVocoder)
39+
* [Pink Noise](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PinkNoise)
40+
* [PluckedS tring](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PluckedString)
41+
* [White Noise](https://github.com/AudioKit/SoundpipeAudioKit/wiki/WhiteNoise)
42+
* [Vocal Tract](https://github.com/AudioKit/SoundpipeAudioKit/wiki/VocalTract)
43+
44+
## Effects / Filters
45+
46+
* [AmplitudeEnvelope](https://github.com/AudioKit/SoundpipeAudioKit/wiki/AmplitudeEnvelope)
47+
* [AutoPanner](https://github.com/AudioKit/SoundpipeAudioKit/wiki/AutoPanner)
48+
* [AutoWah](https://github.com/AudioKit/SoundpipeAudioKit/wiki/AutoWah)
49+
* [Balancer](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Balancer)
50+
* [BandPassButterworthFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/BandPassButterworthFilter)
51+
* [BandRejectButterworthFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/BandRejectButterworthFilter)
52+
* [BitCrusher](https://github.com/AudioKit/SoundpipeAudioKit/wiki/BitCrusher)
53+
* [ChowningReverb](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ChowningReverb)
54+
* [Clipper](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Clipper)
55+
* [CombFilterReverb](https://github.com/AudioKit/SoundpipeAudioKit/wiki/CombFilterReverb)
56+
* [Convolution](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Convolution)
57+
* [CostelloReverb](https://github.com/AudioKit/SoundpipeAudioKit/wiki/CostelloReverb)
58+
* [DCBlock](https://github.com/AudioKit/SoundpipeAudioKit/wiki/DCBlock)
59+
* [DynamicRangeCompressor](https://github.com/AudioKit/SoundpipeAudioKit/wiki/DynamicRangeCompressor)
60+
* [EqualizerFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/EqualizerFilter)
61+
* [FlatFrequencyResponseReverb](https://github.com/AudioKit/SoundpipeAudioKit/wiki/FlatFrequencyResponseReverb)
62+
* [FormantFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/FormantFilter)
63+
* [HighPassButterworthFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/HighPassButterworthFilter)
64+
* [HighShelfParametricEqualizerFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/HighShelfParametricEqualizerFilter)
65+
* [KorgLowPassFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/KorgLowPassFilter)
66+
* [LowPassButterworthFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/LowPassButterworthFilter)
67+
* [LowShelfParametricEqualizerFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/LowShelfParametricEqualizerFilter)
68+
* [ModalResonanceFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ModalResonanceFilter)
69+
* [MoogLadder](https://github.com/AudioKit/SoundpipeAudioKit/wiki/MoogLadder)
70+
* [Panner](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Panner)
71+
* [PeakingParametricEqualizerFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PeakingParametricEqualizerFilter)
72+
* [Phaser](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Phaser)
73+
* [PitchShifter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/PitchShifter)
74+
* [ResonantFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ResonantFilter)
75+
* [RolandTB303Filter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/RolandTB303Filter)
76+
* [StringResonator](https://github.com/AudioKit/SoundpipeAudioKit/wiki/StringResonator)
77+
* [TanhDistortion](https://github.com/AudioKit/SoundpipeAudioKit/wiki/TanhDistortion)
78+
* [ThreePoleLowpassFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ThreePoleLowpassFilter)
79+
* [ToneComplementFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ToneComplementFilter)
80+
* [ToneFilter](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ToneFilter)
81+
* [Tremolo](https://github.com/AudioKit/SoundpipeAudioKit/wiki/Tremolo)
82+
* [VariableDelay](https://github.com/AudioKit/SoundpipeAudioKit/wiki/VariableDelay)
83+
* [ZitaReverb](https://github.com/AudioKit/SoundpipeAudioKit/wiki/ZitaReverb)

0 commit comments

Comments
 (0)