All Projects → renoise → Xrnx

renoise / Xrnx

The official Renoise Lua Scripting repository

Programming Languages

lua
6591 projects

Projects that are alternatives of or similar to Xrnx

X32 Behringer
This GIT repo (C language) holds applications and utilities for the Behringer X32 and M32 mixing consoles. Additional details, documentation, implementation examples and apps can be found in my website:
Stars: ✭ 97 (-41.21%)
Mutual labels:  audio, midi, osc
Chataigne
Artist-friendly Modular Machine for Art and Technology
Stars: ✭ 251 (+52.12%)
Mutual labels:  audio, midi, osc
Fsynth
Web-based and pixels-based collaborative synthesizer
Stars: ✭ 146 (-11.52%)
Mutual labels:  audio, midi, osc
Minibae
The platform-neutral Beatnik Audio Engine, Mini Edition (miniBAE) is an exceptionally mature, well-rounded, and reliable computer music and sound system specially customized for small-footprint and embedded applications.
Stars: ✭ 82 (-50.3%)
Mutual labels:  audio, midi
Audiobench
Open source modular synthesizer
Stars: ✭ 63 (-61.82%)
Mutual labels:  audio, midi
Low Latency Android Ios Linux Windows Tvos Macos Interactive Audio Platform
🇸Superpowered Audio, Networking and Cryptographics SDKs. High performance and cross platform on Android, iOS, macOS, tvOS, Linux, Windows and modern web browsers.
Stars: ✭ 1,121 (+579.39%)
Mutual labels:  audio, midi
Midi shield
Midi shield product 9595, available from SparkFun Electronics
Stars: ✭ 34 (-79.39%)
Mutual labels:  audio, midi
Webmidikit
Simplest MIDI Swift library
Stars: ✭ 100 (-39.39%)
Mutual labels:  audio, midi
Audiokitsynthone
AudioKit Synth One: Open-Source iOS Synthesizer App
Stars: ✭ 1,258 (+662.42%)
Mutual labels:  audio, midi
Ardour
Mirror of Ardour Source Code
Stars: ✭ 2,318 (+1304.85%)
Mutual labels:  audio, midi
Rust Jack
Decent jack bindings for rust
Stars: ✭ 128 (-22.42%)
Mutual labels:  audio, midi
Musictheory
🎵 Music theory concepts in Go.
Stars: ✭ 53 (-67.88%)
Mutual labels:  audio, midi
Theconductor
Toolset for making musical applications with Unity, Max and Ableton.
Stars: ✭ 48 (-70.91%)
Mutual labels:  midi, osc
Audiokit
Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS
Stars: ✭ 8,827 (+5249.7%)
Mutual labels:  audio, midi
Touchosc2midi
a (linux compatible) TouchOSC Midi Bridge written in python
Stars: ✭ 44 (-73.33%)
Mutual labels:  midi, osc
Lick
LiCK, Library for ChucK
Stars: ✭ 118 (-28.48%)
Mutual labels:  midi, osc
Ofxremoteui
OpenFrameworks addon serves any number of variables (bool, float, int, enum, string, ofColor) on the network, so that you can modify from outside the OF app. Includes a native OSX Client. OSC based.
Stars: ✭ 132 (-20%)
Mutual labels:  midi, osc
Giada
Your Hardcore Loop Machine.
Stars: ✭ 903 (+447.27%)
Mutual labels:  audio, midi
Awesome Music
Awesome Music Projects
Stars: ✭ 925 (+460.61%)
Mutual labels:  audio, midi
Wad
Web Audio DAW. Use the Web Audio API for dynamic sound synthesis. It's like jQuery for your ears.
Stars: ✭ 1,540 (+833.33%)
Mutual labels:  audio, midi

Welcome

... to the Renoise Lua Scripting repository! This site targets developers who want to write their own scripts & tools for Renoise.

If you are only interested in downloading tools for Renoise, not developing your own tools, then please have a look at the Renoise Tools Page.

Getting Started

We offer a scripting starter-pack, which is highly recommended for everyone who wants to start getting into all this Renoise scripting. Please download and read this first, in order to get an overview about all that's needed to develop tools for Renoise. It contains example tools, the full API documentation, an introduction text and some code snippets. The starter pack also contains a HTML version of the API reference which is not available here on github.

Link: XRNX Starter Packer for Renoise 3.3

Documentation & API Reference

The main documentation and API references can also be read online, on this site. You'll find them right here in the Documentation folder.

A pretty HTML version of the API documentation can be found at https://files.renoise.com/xrnx/documentation/.

A few words on the overall folder/file Structure:

"Tools"

Here are XRNX tools that are already distributed, and tools which are still in progress. Even though the trunk is a "working version", all scripts and tools in here should at least parse and load in Renoise, without spitting out errors. If you are working on something that is not yet ready for other developers, create a branch for this and do your changes temporarily there please...

"Libraries"

Here are Lua files you want to share with other tools and developers, aka Lua code that was made to be reused in multiple tools. !! Note: Distributed XRNX files should never rely on ANY external Libraries!! If your tools depends on a library, copy and paste this library locally into your tool before distributing it: make sure your distributed tools are always self-contained! The "Libraries" folder should only used temporarily for developers who are working with the trunk.

"Snippets"

Some useful (or not) Renoise related Lua code that does not make up a "tool", but still might be interesting to share.

"Documentation"

"Official" Renoise Scripting API documentation can be found here.

How to Enable the Scripting Developer Tools in Renoise

By default Renoise has all the scripting stuff hidden to keep things as easy as possible for those who don't want to mess around with code. If you want to write scripts, the first thing you have to do is enable the hidden development tools that are built into Renoise. This can be done by:

  • Launching the Renoise executable with the argument "--scripting-dev"
  • Opening Renoise's config.xml file from the preferences folder, and set the ShowScriptingDevelopmentTools property to "true". This way, you don't have to pass the above mentioned argument all the time. If you don't know where to find the Renoise preference folder, open Renoise and click on "Help" -> "Show Preferences Folder..."

Enabling this option will add a new main menu entry "Tools" (or add new entries there if it already exists). In the "Tools" menu you will find:

  • "Reload All Tools": This will force a reload of all installed and running scripting tools (extensions). This can be handy when adding new tools by hand or when changing them.
  • "Scripting Console & Editor": This is the main developing scripting tool. It allows you to:
  1. Evaluate scripts or commands in realtime with a small terminal (command-line)
  2. Watch any script's output (all "print"s and errors from scripts will be redirected here)
  3. Create, view and edit Lua, text, and XML files that will make up tools / extensions for Renoise.

Have a look at !Introduction.txt in the XRNX code repository for more info.

Need More Help?

This site contains various complete scripting tools written by the Renoise team. The existing tools may help you to get more info about how your tools could be done.

For any questions regarding the Lua API, or this repository, have a look at the Renoise Scripting Development Forum please.

Have fun scripting and hacking Renoise!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].