Project

ruck-ugen

0.0
No commit activity in last 3 years
No release in over 3 years
A ruck shreduler and mini audio unit generator framework inspired by ChucK. Includes library for reading and writing multi-channel WAV files, and some basic audio filters.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme
ruck-ugen's shreduler calculates an audio unit generator
graph's output in virtual time. The graph can be modified by
shreds all the while.

The graph is written in Ruby for flexibility, so it's
too slow (on my computer) for real time, so there is no
real-time playback. You can use WavOut, though.
(See examples/ex01.rb)

Check out the library of built-in unit generators in
lib/ruck/ugen/ugen/ and make your own.

Unit Generator Usage
====================

Play a sine wave (examples/ex02.rb):

  s = SinOsc.new(:freq => 440)
  w = WavOut.new(:filename => "ex02.wav")
  s >> w >> blackhole
  play 3.seconds

Attach lambdas to unit generator attributes
(examples/ex03.rb):

  wav = WavOut.new(:filename => "ex03.wav")
  sin2 = SinOsc.new(:freq => 3)
  sin = SinOsc.new(:freq => L{ sin2.last * 220 + 660 },
                   :gain => L{ 0.5 + sin2.last * 0.5 })
  [sin >> wav, sin2] >> blackhole
  play 3.seconds