track-top / noisecraft

Browser-based visual programming language and platform for sound synthesis.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NoiseCraft

NoiseCraft is a work in progress, and we are looking for contributors to help build and debug it

NoiseCraft is an open source, browser-based visual programming language and platform for sound synthesis and music making that runs your a web browser, with the goal of creating a community for the open exchange of musical ideas. The design is loosely inspired by PureData, Max/MSP and other visual programming languages. The plan is for the app to remain free to use and ad-free for the foreseeable future.

You can try NoiseCraft at noisecraft.app, and browse projects shared by other users at noisecraft.app/browse. Currently, this works in Chrome and Edge but not Firefox as we are waiting for a Firefox bug to be fixed. Please note that it's a work in progress, You may run into bugs, and support for mobile devices is currently poor. Reporting bugs and helping us fix them is one way you can contribute to this project.

Design

Design principles:

  • NoiseCraft follows a minimalistic philosophy:
    • No web frameworks, just bare JS/HTML/CSS
    • Intentionally keep dependencies to a minimum
    • Prioritize features the users need
    • Avoid redundant features and feature creep
  • In terms of user interface design:
    • Minimize the learning curve and reduce friction
    • Keep the user interface simple and uncluttered
    • Avoid drop-down menus and hidden options if possible
    • Use key combos and controls that will likely seem familiar to most users
    • Avoid ambiguity, use known/existing terminology wherever possible
  • Visual programming language design:
    • There is only one data type: floating-point numbers
    • There is no distinction between control signals and audio signals
  • Practical considerations:
    • Avoid images and sound samples to keep bandwidth/server costs low
    • Avoiding sound samples also forces people to think about how to generate sounds

NoiseCraft uses a multi-page design, as opposed to a single-page app. This means the New, Help and Browse links open new tabs. This helps users avoid accidentally losing their work when clicking other tabs, and make it possible for us to send new users direct links to the /browse and /help pages, for example.

The user-interface uses an immediate-mode GUI. That is, the UI gets redrawn every time an action is performed on the model. This makes it trivial to implement features such as undo/redo, because we can simply store copies of previous project states. It also reduces the coupling between the UI and the model. In practice, caching is used to avoid redrawing the entire user interface for every single state change.

Audio is produced by the AudioView class (see public/audioview.js), which is updated when state changes occur in the model. This compiles the audio graph into JavaScript code that can then be run in a background process (an AudioWorklet). We only use the web audio API to output sound, not for sound synthesis. This helps us guarantee that the sound produced for a given project will be the same on any browser or device.

Project files are saved in an easy to parse JSON format (.ncft), which could allow external tools to eventually be built. For example, it's possible to imagine that NoiseCraft projects could be compiled into VSTs.

Contributing

We're more than happy to accept bug fixes. However, we want to avoid growing the functionality of NoiseCraft too fast, and we strive to minimize dependencies and overall complexity. As such, we're going to be be conservative about the additions to the project that we accept. If you would like to contribute new features or major changes to the codebase, please open an issue to discuss the proposed changes first, or comment on an existing issue.

Development Setup Instructions

Installing dependencies:

# Install nodejs and npm
sudo apt-get install -y nodejs npm

# Update npm
sudo npm install -g npm

# Install the dependencies for this project
npm install

To start the server locally:

node server.js

NoiseCraft is then accessible at http://localhost:7773/

To run tests locally:

node tests.js

Running using Docker

To run the NoiseCraft server using Docker please follow the following steps:

# Build docker NoiseCraft image
docker build . -t noisecraft

# Start docker NoiseCraft container
docker run -p 7773:7773 -d noisecraft

NoiseCraft is then accessible at http://localhost:7773/

About

Browser-based visual programming language and platform for sound synthesis.

License:GNU General Public License v2.0


Languages

Language:JavaScript 92.1%Language:HTML 5.0%Language:CSS 2.6%Language:Shell 0.3%Language:Dockerfile 0.0%