An open source DAW for GNU/Linux, inspired by modular synths. http://noisicaa.odahoda.de/
 
 
 
 
 
 
Go to file
Ben Niemann f94fb2fcd8 Disable mypy checking of profutil. 2020-02-18 03:30:04 +01:00
3rdparty/typeshed Use mutagen for file metadata and support AAC files. 2020-02-16 12:54:59 +01:00
bin Improve test infrastructure. 2019-08-11 15:10:31 +02:00
build_utils Generate test files in various formats during build. 2020-02-18 02:38:47 +01:00
data Add a basic pianoroll track type. 2019-09-08 23:38:58 +02:00
docs/dev Switch build system to waf. 2019-07-20 07:54:48 +02:00
misc Switch build system to waf. 2019-07-20 07:54:48 +02:00
noisicaa Support FLAC 2020-02-18 02:41:52 +01:00
noisidev Disable mypy checking of profutil. 2020-02-18 03:30:04 +01:00
playground Custom UI for mixer nodes and an Instrument node to bring back sample playback. 2019-01-04 01:31:33 +01:00
testdata Generate test files in various formats during build. 2020-02-18 02:38:47 +01:00
testlogs Use cmake for building. Started rewriting the audio core in C++. 2017-08-19 04:07:18 +02:00
website Blog post: Development update (January 3) 2020-01-03 05:55:37 +01:00
.dir-locals.el Improve test infrastructure. 2019-08-11 15:10:31 +02:00
.gitignore Switch build system to waf. 2019-07-20 07:54:48 +02:00
.projectile Improve test infrastructure. 2019-08-11 15:10:31 +02:00
COPYING Initial commit to git (from latest version in svn). 2015-11-29 13:02:36 +01:00
README.md Switch build system to waf. 2019-07-20 07:54:48 +02:00
waf Switch build system to waf. 2019-07-20 07:54:48 +02:00
wscript Generate test files in various formats during build. 2020-02-18 02:38:47 +01:00

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