Image Image Image Image Image
Scroll to Top

To Top

supercollider

16

Jan
2014

7 Comments

In code

By admin

SuperCollider linux standalones

On 16, Jan 2014 | 7 Comments | In code | By admin

There isn’t a program for playing sound files in Linux which has the functionality that I want: fast, light, play files with any number of channels and 32bit floating-point encoded aiffs or wavs, so I decided to just code my own file player in SuperCollider. I didn’t want to have to start up SuperCollder to use the file player, I was in need of a “standalone”. Standalone is concept from OSX, which is not really use much in Linux. On OSX apps are just a folder with all the files and data inside (except some configuration files in ~/Library) while in Linux apps are usually installed system wide. Since the introduction in SuperCollider of the language configuration system via a yaml file, it’s possible to override which paths get searched for class files, and so kind of emulate standalones in linux too.

A SuperCollider standalone can then be created using the language config file, with the caveat that it has to be generated from a script in order to determine the location of the home folder, in order to disable loading the default extensions folder and class library folder. I have pushed a demo of this to github.

For quick scripts I just place

#!/usr/local/bin/sclang -l/home/miguel/bin/langconf.yaml

on top of the file and either run it from terminal or create a .desktop file for it:

So now I have a file player app ! 🙂

fileplayer-example1-1

fileplayer-example2

Tags |

09

Jan
2014

No Comments

In code

By admin

supercollider async actions with completion messages

On 09, Jan 2014 | No Comments | In code | By admin

Usually async actions in SuperCollider are dealt with the sync message. A sync message is placed in between each group of commands containing an async command which needs to run before some other future command. An alternative to the sync message is to use the completion messages. This is the mechanism used by the Request monad from hsc3-server.

Today I needed to quickly get some code going to record from the input buses of a server to a file on disk, and I decided to chain the commands via completion messages:

Tags |

16

Dec
2013

No Comments

In code

By admin

FPLib FRP – new mouse and keyboard event sources and signals

On 16, Dec 2013 | No Comments | In code | By admin

Inspired by the signals provided by elm for mouse and keyboard interaction I’ve revised the corresponding event sources and signals in FPLib and updated them to be usable with ENDef.

Mouse:

  • mouseClicksENInputES – EventSource – fires when mouse clicks come in
  • mousePosENInput – FPSignal – tracks mouse position. Needs  .acceptsMouseOver_(true) on the view.
  • mouseIsDownENInput – FPSignal – tracks if mouse is down.

Examples:

Keyboard

  • keyDownENInputES – EventSource – fires when keyboard keys are pressed
  • keysDownENInput – FPSignal -tracks the currently pressed keys.

Examples:

Tags |

14

Dec
2013

No Comments

In code

By admin

RCUK project showcase – game controllers and computer vision in the sonic lab

On 14, Dec 2013 | No Comments | In code | By admin

On the 5th of past June a bunch of kids came to the sonic lab of SARC in Belfast for a presentation showcasing some of what we do at SARC. For my presentation I prepared two patches using Unit Lib. One would loop a sample, with a game controller controlling the sample duration and position in the file and panning it in 3D space using VBAP and the 32 speakers of the sonic lab. The other patch used a webcam to track the movement of sphero glowing ball, it would then play a sound whenever the ball “collided” with a virtual object. Also a sound of footsteps would move together with the ball, positioning the sound in the same physical location as the ball. Both patches showcase nicely the interaction of Unit Lib, VBAPLib and FRP from FPLib. The computer vision part was done in processing via the scala language and is available in github. You can see the code below:

Tags |

12

Dec
2013

No Comments

In code

By admin

UnitLib controls with arrays

On 12, Dec 2013 | No Comments | In code | By admin

After fixing a bug earlier this week, it’s now really nice to manipulate controls with arrays in a Udef.  Just use .ukr and specify a spec for the second argument.

unitlib arg array

Tags |

27

Sep
2013

No Comments

In code

By admin

From string to loaded buffer in less then a second

On 27, Sep 2013 | No Comments | In code | By admin

One of the goals of Unit Lib is to make using SuperCollider easier.  The set of abstractions provided by the main class library of SuperCollider are quite low level (Synth, Group, etc).  They require a lot of work to manage the server/client architecture, buses, node ordering, loading buffers, etc. Its possible to simplify these tasks by building higher level abstractions on top of the built in classes. There are many such higher level abstractions, such as JITLib, but the design space is still being explored. With Unit Lib we have quite simplified resource loading, specifically loading buffers, to the point that it has now become a one liner:

Starting the synth will automatically load the buffer. Nifty isn’t it ? 🙂

Unit Lib is shaping up to be quite nice for live coding or prototyping, it’s very easy to build guis, specify the specs for controls and connect controllers to it.

Tags |