Code Monkey home page Code Monkey logo

faust-guitarix-sc37's Introduction

faust-guitarix-sc37

Guitarix effects in Super Collider. This will work on SuperCollider 3.7 and 3.8

For Supercollider 3.10 go here: https://github.com/gabrielsanchez/guitarix-supercollider

Installation

Drag the folder into your SuperCollider Extensions folder. It's probably in /usr/share/SuperCollider/Extensions

If it doesn't work, you will need to download FAUST and run the faust2supercollider script. Running the faust2supercollider script that will generate these files.

(
// Multi-Band Distortion
SynthDef(\mbdistortion, {arg in, out=0, vol=16.1, pregain=20, gain=20, bass_boost=10, eq_b=0.61, eq_m=0.04, eq_h=0.89, rev=0.45, room=0.5, attack=0.002, knee=5, ratio=3, release=0.3, threshold=16, cabinet=10, cab_bass=0.8, cab_treble=0.9, dist_gain=2, drive=0.65, high_drive=1, middle_h_drive=1, middle_l_drive=1, low_drive=1;
	var sig, disto;
	sig = SoundIn.ar(in);
	disto = FaustCompressor.ar(
		Pan2.ar(
			FreeVerb.ar(
				FaustVolume.ar(
					FaustCabinetImpulseFormer.ar(
						FaustMultiBandDistortion.ar(
							FaustRolandStyle.ar(
								FaustPresenceLevel.ar(
									FaustBassbooster.ar(
										FaustAmpT2.ar(
											FaustValve.ar(sig,0.01,1),
											pregain, gain
										), bass_boost
									)
								), eq_b, eq_m, eq_h
							), dist_gain, drive, high_drive, middle_h_drive, middle_l_drive, low_drive
						), cabinet, cab_bass, cab_treble
					), vol.neg
				), rev, room
			)
		), attack, knee, ratio, release, threshold.neg
	);
	Out.ar([0,1], disto!2);
}).add;
)

b = Synth(\distortion, [\in, 0])

faust-guitarix-sc37's People

Contributors

gabrielsanchez avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.