An open source DAW for GNU/Linux, inspired by modular synths. http://noisicaa.odahoda.de/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Ben Niemann f94fb2fcd8
Disable mypy checking of profutil.
3 years ago
3rdparty/typeshed Use mutagen for file metadata and support AAC files. 3 years ago
bin Improve test infrastructure. 4 years ago
build_utils Generate test files in various formats during build. 3 years ago
data Add a basic pianoroll track type. 4 years ago
docs/dev Switch build system to waf. 4 years ago
misc Switch build system to waf. 4 years ago
noisicaa Support FLAC 3 years ago
noisidev Disable mypy checking of profutil. 3 years ago
playground Custom UI for mixer nodes and an Instrument node to bring back sample playback. 4 years ago
testdata Generate test files in various formats during build. 3 years ago
testlogs Use cmake for building. Started rewriting the audio core in C++. 6 years ago
website Blog post: Development update (January 3) 3 years ago
.dir-locals.el Improve test infrastructure. 4 years ago
.gitignore Switch build system to waf. 4 years ago
.projectile Improve test infrastructure. 4 years ago
COPYING Initial commit to git (from latest version in svn). 7 years ago
README.md Switch build system to waf. 4 years ago
waf Switch build system to waf. 4 years ago
wscript Generate test files in various formats during build. 3 years ago

README.md

noisicaä

Important note: This is project is in pre-APLHA state, do not expect it to be usable in any form or shape.

  • It has bugs.
  • It does not do a lot of useful things.
  • There is no documentation.
  • And most importantly: the save format is not finalized and will change in incompatible ways, i.e. you will not be able to open your work from older versions.

What's This?

A simple music editor with a focus on classical musical notation.

Follow the development at http://noisicaa.odahoda.de/

License: GPL2 (see file COPYING).

Requirements

This project is currenly only designed to run on Linux desktops. No effort has yet been made to make it run on anything else than Ubuntu 16.04 and 18.04 (which are the distributions used for development).

Getting Started

These instructions are not targetted at end users. There are not prebuilt binary packages, which you could just install, so you have to build from source. It is assumed that you're moderately experienced with software development on Linux.

You need at least git and python3 installed on your system.

sudo apt install git python3

First grab the latest source code:

git clone https://github.com/odahoda/noisicaa.git
cd noisicaa

Configure the project. This will create a virtual environment and populate it with the required 3rd party packages. It will also install missing system packages - this assumes that you have sudo rights on the system, and it might query you for your password.

./waf configure --download --install-system-packages

Now you can build it:

./waf build

You can either run it from the build directory:

bin/noisicaä

Or install it to /usr/local:

sudo ./waf install