Git Product home page Git Product logo

lmn-3-daw's Introduction

LMN-3-DAW

License: GPL v3

This repository contains the code for the LMN-3-DAW.

If you would like to support the project, please consider becoming a sponsor.

Overview Video

An overview video showcasing the project can be viewed here

Releases

Releases can be found here. A release contains executables for x86_64, ARM, and aarch64 architectures. The aarch64 bit version of the application is recommended for running on the Pi. Note that this does require you to run the 64-Bit version of the Raspberry Pi OS if you are not already.

Configuration

If you wish to configure the application, you can add a config.yaml file to ~/.config/LMN-3. The only configuration currently supported is whether to show a title bar, and the width and height of the application window. You can also configure a basic color scheme. An example config file is shown below:

config:
  show-title-bar: false
  size:
    width: 800
    height: 480
  colours:
    backgroundColour: "ff1d2021"
    textColour: "fff9f5d7"
    colour1: "ff458588"
    colour2: "ff689d6a"
    colour3: "fff9f5d7"
    colour4: "ffcc241d"
    colour5: "ff98971a"
    colour6: "ffd65d0e"
    colour7: "ffb16286"
    colour8: "ffd79921"

The first time you run the application, the directories ~/.config/LMN-3/samples and ~/.config/LMN-3/drum kits will be automatically created. See the sections below for details on how to add synth samples and drum kits to the application.

Samples

Place any audio sample files you wish to use with the Sampler plugin in ~/.config/LMN-3/samples.

Drum Kits

Drum kits are handled a bit differently than regular samples. Drum kits are essentially directories located in ~/.config/LMN-3/drum_kits, with each kit directory containing a .yaml mapping file along with any sample files associated with it.

As an example, suppose I want to make a drum kit called AwesomeDrumKit. I would first create a directory in ~/.config/LMN-3/drum_kits named AwesomeDrumKit.

mkdir ~/.config/LMN-3/drum_kits/AwesomeDrumKit

I would then add all the samples I want to use in that kit into that newly created AwesomeDrumKit folder (if you are doing this using the file browser you will need to make sure and show hidden folders since .config is hidden.) Then I would create the yaml file:

touch  ~/.config/LMN-3/drum_kits/AwesomeDrumKit/AwesomeDrumKit.yaml

Notice that the .yaml file has the same name as its parent directory. You would then edit the file and define the mapping that states which sample is played by which midi note number:

name: "AwesomeDrumKit"
mappings:
  - note_number: "53"
    file_name: "cool_sample.wav"
  - note_number: "54"
    file_name: "wacky_sample.wav"
  - note_number: "55"
    file_name: "crazy_sample.wav"

This is a manual process. 53 is the first note in the +0 octave. You can add mappings for the entire note range from 5 to 124. If you want to make a drum kit, you will need to create the directory to store the kit in, add the audio files to it, and then create the .yaml mapping file. Perhaps someone could make a JUCE application to make this easier (cough...cough).

Building From Source

Dependencies

If you wish to build the project from source, you will also need to run the following command to install the build dependencies:

sudo apt install libasound2-dev libjack-jackd2-dev \
    ladspa-sdk \
    libcurl4-openssl-dev  \
    libfreetype6-dev \
    libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \
    libwebkit2gtk-4.0-dev \
    libglu1-mesa-dev mesa-common-dev \
    build-essential cmake clang llvm lld

Cloning the Repository

This repository relies on git submodules. You must clone the submodules as well using:

git clone --recurse-submodules https://github.com/FundamentalFrequency/LMN-3-DAW

Building the Project

CMake is used to build the project. Execute the following commands to build all project targets:

cmake -B build -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fuse-ld=lld
cmake --build build -j8

You will find the corresponding artifacts in the build directory that was created using the commands above. ./build/LMN3_artefacts/Release will contain the main LMN-3 executable.

Compiling for the Raspberry Pi

If you want to build the DAW for the Raspberry Pi, you will need to either build it on the Pi itself (takes a fair bit of time), or cross compile it. Cross compilation is outside the scope of this document, but you can take a look at the release workflow for insight on how it works.

Note that if you do build on the Pi you will need at least 4 GB of RAM.

Running the Test Suite

After building the project using the commands above, you can run the test suite by executing the following command:

./build/Tests/Tests_artefacts/Release/Tests

LMN-3-Emulator

If you lack LMN-3 hardware with which to control the DAW (or just want a more convenient method for testing purposes), you can use the LMN-3-Emulator directly on your desktop. The emulator sends the very same MIDI commands as the actual LMN-3 hardware, though it is missing a few features.

Contributing

Pull requests are welcome and very much appreciated. Please read the contributing guide before submitting a pull request.

Thanks

This project would not be possible without the following free and open source projects:

and many others.

License

Licensed under the GPL 3.0 license.

This repository also includes the yaml-cpp library which requires the following notice be included:

Copyright (c) 2008-2015 Jesse Beder.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

lmn-3-daw's People

Contributors

stonepreston avatar leonrein avatar gluker avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.