This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c123c7
commit 52f3bd6
Showing
175 changed files
with
137,232 additions
and
1 deletion.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
Faust/Examples/FourSourcesToOcto.app/Contents/MacOS/FourSourcesToOcto
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Faust/Examples/OneSourceToStereo.app/Contents/MacOS/OneSourceToStereo
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> | ||
<plist version="0.9"> | ||
<dict> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>CFBundleIconFile</key> | ||
<string></string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>Created by Qt/QMake</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleExecutable</key> | ||
<string>echo</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.yourcompany.echo</string> | ||
<key>NOTE</key> | ||
<string>This file was generated by Qt/QMake.</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
APPL???? |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
declare name "echo"; | ||
declare version "1.0"; | ||
declare author "Grame"; | ||
declare license "BSD"; | ||
declare copyright "(c)GRAME 2006"; | ||
//----------------------------------------------- | ||
// A Simple Echo | ||
//----------------------------------------------- | ||
|
||
import("music.lib"); | ||
|
||
process = vgroup("echo-simple", echo1s); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> | ||
<plist version="0.9"> | ||
<dict> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>CFBundleIconFile</key> | ||
<string></string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>Created by Qt/QMake</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleExecutable</key> | ||
<string>karplus32</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.yourcompany.karplus32</string> | ||
<key>NOTE</key> | ||
<string>This file was generated by Qt/QMake.</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
APPL???? |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
declare name "karplus32"; | ||
declare version "1.0"; | ||
declare author "Grame"; | ||
declare license "BSD"; | ||
declare copyright "(c)GRAME 2006"; | ||
|
||
|
||
//----------------------------------------------- | ||
// karplus-strong | ||
// with 32 resonators in parallel | ||
//----------------------------------------------- | ||
|
||
import("music.lib"); | ||
|
||
|
||
// Excitator | ||
//-------- | ||
|
||
upfront(x) = (x-x') > 0.0; | ||
decay(n,x) = x - (x>0)/n; | ||
release(n) = + ~ decay(n); | ||
trigger(n) = upfront : release(n) : >(0.0) : +(leak); | ||
leak = 1.0/65536.0; | ||
|
||
size = hslider("excitation (samples)", 128, 2, 512, 1); | ||
|
||
|
||
|
||
|
||
// Resonator | ||
//----------------- | ||
|
||
dur = hslider("duration (samples)", 128, 2, 512, 1); | ||
att = hslider("attenuation", 0.1, 0, 1, 0.01); | ||
average(x) = (x+x')/2; | ||
|
||
resonator(d, a) = (+ : delay(4096, d-1.5)) ~ (average : *(1.0-a)) ; | ||
|
||
|
||
// Polyphony | ||
//----------------- | ||
|
||
detune = hslider("detune", 32, 0, 512, 1); | ||
polyphony = hslider("polyphony", 1, 0, 32, 1); | ||
|
||
|
||
|
||
output = hslider("output volume", 0.5, 0, 1, 0.1); | ||
|
||
|
||
process = vgroup("karplus32", | ||
vgroup("noise generator", noise * hslider("level", 0.5, 0, 1, 0.1)) | ||
: vgroup("excitator", *(button("play"): trigger(size))) | ||
<: vgroup("resonator x32", par(i,32, resonator(dur+i*detune, att) * (polyphony > i))) | ||
:> *(output),*(output) | ||
); |
77 changes: 77 additions & 0 deletions
77
...Faust/HoaLibrary-1.1/Examples/OneSourceToStereo.0.tmp-svg/SR-0x7ffa495d6a80.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions
44
...Faust/HoaLibrary-1.1/Examples/OneSourceToStereo.0.tmp-svg/a1-0x7ffa495dac40.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.