An open source DAW for GNU/Linux, inspired by modular synths. http://noisicaa.odahoda.de/
 
 
 
 
 
 
Go to file
Ben Niemann a5ffc00a9b Handle main script as static file (with rewrite), add desktop menu entry and icon. 2019-07-20 06:51:47 +02:00
3rdparty/typeshed Don't use setup.py to build 3rdparty packages. 2019-07-19 10:02:55 +02:00
bin Make runpylint work again. 2019-07-20 04:55:35 +02:00
build_utils Handle main script as static file (with rewrite), add desktop menu entry and icon. 2019-07-20 06:51:47 +02:00
data Handle main script as static file (with rewrite), add desktop menu entry and icon. 2019-07-20 06:51:47 +02:00
docs/dev Initial dev docs for vmtests. 2018-01-27 21:31:41 +01:00
misc Handle main script as static file (with rewrite), add desktop menu entry and icon. 2019-07-20 06:51:47 +02:00
noisicaa Fix some compiler flags. 2019-07-20 06:02:51 +02:00
noisidev Lint fixes. 2019-07-20 05:36:14 +02: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 Add remaining build rules. 2019-07-15 02:53:36 +02: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 (July 14) 2019-07-14 01:32:52 +02:00
.dir-locals.el Add pyvenv-workon to .dir-locals.el 2019-03-15 01:09:28 +01:00
.gitignore Put venv directory in main dir. 2019-07-19 10:03:22 +02:00
.projectile Projectile should ignore 'venv' dir. 2019-07-19 13:37:52 +02:00
COPYING Initial commit to git (from latest version in svn). 2015-11-29 13:02:36 +01:00
README.md Update README. 2019-07-15 05:29:00 +02:00
waf Make waf always use python3. 2019-07-16 11:16:05 +02:00
wscript Handle main script as static file (with rewrite), add desktop menu entry and icon. 2019-07-20 06:51:47 +02: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 17.10 (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.

First grab the latest source code:

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

Then install the deb packages that are needed to build and run it:

sudo apt-get install $(./listdeps --system --build)

For the first time setup, create a new virtualenv:

python3 -m venv ENV
. ENV/bin/activate
pip install --upgrade pip wheel

And populate it with a bunch of python packages that noisicaä uses:

pip install $(./listdeps --pip --build)

Now you should be ready to build it:

./waf configure build

There is currently no way to install it, so you can only run it from the build directory using

bin/noisicaä

Everytime you open a new bash to work with it, you have to activate the virtual environment using

. ENV/bin/activate