This file contains hidden or 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
| var lowFadeIn = { | |
| ugen: "flock.ugen.line", | |
| duration: 10, | |
| start: 0, | |
| end: 0.125 | |
| }; | |
| var midFadeIn = { | |
| ugen: "flock.ugen.line", | |
| duration: 10, |
This file contains hidden or 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
| fluid.defaults("colin.synth", { | |
| gradeNames: "flock.modelSynth", | |
| fundamental: 220, | |
| model: { | |
| inputs: { | |
| carrier: { | |
| freq: "{that}.options.fundamental" | |
| } |
This file contains hidden or 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
| var context = flock.environment.audioSystem.context; | |
| var convolver = flock.environment.audioSystem.nativeNodeManager.createOutputNode({ | |
| node: "Convolver", | |
| normalize: true | |
| }); | |
| flock.synth({ | |
| synthDef: { | |
| ugen: "flock.ugen.filter.moog", |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Multichannel Chrome OS Test</title> | |
| </head> | |
| <body> |
This file contains hidden or 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
| flock.synth({ | |
| synthDef: [ | |
| { | |
| ugen: "flock.ugen.sin", | |
| freq: { | |
| ugen: "flock.ugen.sequencer", | |
| durations: [0.25, 0.25, 0.16666667, 0.16666667, 0.33, 0.25, 0.25], | |
| values: [1, 9/8, 4/3, 3/2, 4/3, 5/4, 1], | |
| mul: 440, | |
| loop: 1.0, |
This file contains hidden or 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
| diff --git a/third-party/infusion/js/Fluid.js b/third-party/infusion/js/Fluid.js | |
| index 7913a4c..d132d1e 100644 | |
| --- a/third-party/infusion/js/Fluid.js | |
| +++ b/third-party/infusion/js/Fluid.js | |
| @@ -24,7 +24,7 @@ https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt | |
| */ | |
| // Declare dependencies | |
| -/* global console, opera, YAHOO*/ | |
| +/* global self, console, opera, YAHOO*/ |
This file contains hidden or 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
| var synth = flock.synth({ | |
| synthDef: { | |
| ugen: "flock.ugen.sin", | |
| freq: { | |
| id: "freq", | |
| ugen: "flock.ugen.midiFreq", | |
| source: 60 | |
| } | |
| } | |
| }); |
This file contains hidden or 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
| var duration = 21 * 60, | |
| fadeOutDuration = 10, | |
| bufferName = "inside-21m-16-48000"; | |
| var leftFadeIn = { | |
| ugen: "flock.ugen.line", | |
| start: 0, | |
| end: 0.05, | |
| duration: 4 | |
| }; |
This file contains hidden or 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
| var lowFadeIn = { | |
| ugen: "flock.ugen.line", | |
| duration: 10, | |
| start: 0, | |
| end: 0.125 | |
| }; | |
| var midFadeIn = { | |
| ugen: "flock.ugen.line", | |
| duration: 10, |
This file contains hidden or 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
| var fundamental = 440, | |
| harmonics = [1, 3, 5, 7, 9, 13, 15], // Clarinets only have odd partials. | |
| baseHarmonicDef = { | |
| ugen: "flock.ugen.saw", | |
| freq: 440, | |
| mul: { | |
| ugen: "flock.ugen.envGen", | |
| envelope: { | |
| type: "flock.envelope.adsr", | |
| attack: 0.1, |