Open Sound Control: Difference between revisions

From Renoise User Manual
Jump to: navigation, search
imported>Taktik
No edit summary
No edit summary
 
(33 intermediate revisions by 4 users not shown)
Line 1: Line 1:
= Open Sound Control (OSC) =
= Open Sound Control =


Open Sound Control was planned to be a successor of the MIDI control protocol: It enables communication between computer software, sound synthesizers and other multimedia devices that support OSC.  
Open Sound Control (OSC) was created as a successor to the MIDI control protocol. It enables communication between computer software, sound synthesizers and other multimedia devices that support OSC.


Its advantages over MIDI include: an open-ended and dynamic URL-style symbolic naming scheme, symbolic and high-resolution numeric argument data, pattern matching language to specify multiple recipients of a single message, high resolution time tags and "bundles" of messages whose effects must occur simultaneously.  
Its advantages over MIDI include: an open-ended and dynamic URL-style symbolic naming scheme, symbolic and high-resolution numeric argument data, pattern matching language to specify multiple recipients of a single message, high resolution time tags and "bundles" of messages whose effects must occur simultaneously. The protocol is also not bound by specific hardware (i.e. MIDI cables and ports) and can be transferred across any network connection, even remotely via the internet.


Basically this means it can do a lot more than MIDI can do, but due to its very open ended specification, you always have to fully configure both, the OSC client (the one which sends OSC data) and the OSC server (the one which receives data - Renoise) in order to do something with it. Unlike MIDI, which works more or less out of the box with every device you connect MIDI to.
This makes OSC much more powerful than MIDI, but due to its open-ended specification, both the OSC client ''(which sends OSC data)'' and the OSC server ''(which receives data, i.e. Renoise)'' must be separately configured, unlike MIDI which is essentially "Plug & Play".


The advantage of this very open specification, is that OSC is not limited to music applications only, but can also be used with video systems, web-based tools, other programming languages too etc. Further OSC connections are done through network connections - ethernet or internet, which nearly every computer nowadays comes equipped with. This even allows remote-controlling other computers or devices through the internet.
For more general information about OSC, see the [http://en.wikipedia.org/wiki/Open_Sound_Control OSC Wikipedia page] and the [http://opensoundcontrol.org/ official OSC homepage].


For more general information about OSC have a look at the [http://en.wikipedia.org/wiki/Open_Sound_Control OSC Wikipedia page] and the [http://opensoundcontrol.org/ official OSC homepage].


== Setup ==


== Setup ==
Renoise can use OSC in one of two ways:
 
# Using Renoise as an OSC server (receiving messages) via a preconfigured OSC message set.
# Using the fully configurable and customisable [http://scripting.renoise.com Renoise scripting API]. This allows you to send and receive any form of OSC message and define your own communication protocol, but obviously requires programming.


OSC in Renoise can be used in two ways:


# fully configurable and customizable via Renoises scripting API. Please have a look at the [http://scripting.renoise.com|Renoise Scripting API pages] for more info. This allows you to send and receive any OSC messages, define your own communication protocol, but requires programming knowledge.
To set up Renoise as an OSC server, open the OSC options panel by choosing ''[[Preferences#OSC|"Edit > Preferences > OSC"]]'' from the [[Main_Screen#Upper_Status_Bar|main menu]]:
# using Renoise as OSC server (OSC receiver) via a prespecified OSC message set.
To setup Renoise as OSC server, open the OSC options panel by choosing ''"Edit -> Preferences -> OSC"'' from the main menu:


[[Image:Vvoois_renoise_preferences_osc.png]]
[[Image:3.2_preferences-osc.png]]


* '''Enable Server:''' This starts the Renoise OSC server and the network port is changed to a listening state, so you may get a firewall warning the first time this is enabled.
* '''Enable Server:''' This starts the Renoise OSC server and the network port is changed to a listening state, so you may get a firewall warning the first time this is enabled.
Line 32: Line 31:
* '''Explanation Panel:''' When clicking on a command in the Command List, an explanation of what the command does is displayed here.
* '''Explanation Panel:''' When clicking on a command in the Command List, an explanation of what the command does is displayed here.


=== Renoises default OSC implementation===


* /evaluate(string)
== The Default OSC Implementation of Renoise ==
-- Evaluate a custom Lua expression, like e.g. 'renoise.song().transport.bpm = 234'
 
* '''/renoise/evaluate(string)'''
Evaluate a custom Lua expression ''(e.g. renoise.song().transport.bpm = 234)''.
 
* '''/renoise/song/bpm(number)'''
Set the song's [[Transport Panel#Song Parameters|current BPM]] value [20 - 999].
 
* '''/renoise/song/edit/mode(boolean)'''
Set the song's global [[Recording_and_Editing_Notes#Edit_Mode|Edit Mode]] on or off.
 
* '''/renoise/song/edit/octave(number)'''
Set the song's [[Transport Panel#Song Parameters|current octave]] value [0 - 8].
 
* '''/renoise/song/edit/pattern_follow(boolean)'''
Enable or disable the global [[Transport Panel#Song Controls|Pattern Follow]] mode.
 
* '''/renoise/song/edit/step(number)'''
Set the song's current [[Pattern_Editor#Pattern_Editor_Control_Panel|Edit Step]] value [0 - 8].
 
* '''/renoise/song/instrument/XXX/macro1-8(number)'''
Set instrument XXX's [[Sampler#Macros|macro]] parameter value [0 - 1].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/bpm(number)
* '''/renoise/song/instrument/XXX/monophonic(boolean)'''
-- Set the songs current BPM [32 - 999]
Enable or disable instrument XXX's [[Instruments#Instrument_Properties|mono mode]].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/edit/mode(boolean)
* '''/renoise/song/instrument/XXX/monophonic_glide(number)'''
-- Set the songs global edit mode on or off
Set instrument XXX's [[Instruments#Instrument_Properties|mono glide]] amount [0-255].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/edit/octave(number)
* '''/renoise/song/instrument/XXX/phrase_playback(string)'''
-- Set the songs current octave [0 - 8]
Set instrument XXX's [[Phrase_Editor#Phrase_Controls|phrase playback mode]] [Off, Program, Keymap].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/edit/pattern_follow(boolean)
* '''/renoise/song/instrument/XXX/phrase_program(number)'''
-- Enable or disable the global pattern follow mode
Set instrument XXX's [[Phrase_Editor#Phrase_Controls|phrase program number]] [0 - 127].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/edit/step(number)
* '''/renoise/song/instrument/XXX/quantize(string)'''
-- Set the songs current edit_step [0 - 8]
Set instrument XXX's [[Instruments#Instrument_Properties|quantization method]] [None, Line, Beat, Bar].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/lpb(number)
* '''/renoise/song/instrument/XXX/scale_key(string)'''
-- Set the songs current Lines Per Beat [1 - 255]
Set instrument XXX's [[Instruments#Instrument_Properties|note scaling]] key [C, C#... B].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/record/chord_mode(boolean)
* '''/renoise/song/instrument/XXX/scale_mode(string)'''
-- Enable or disable the global chord mode
Set instrument XXX's [[Instruments#Instrument_Properties|note scaling]] mode.<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/record/quantization_step(number)
* '''/renoise/song/instrument/XXX/transpose(number)'''
-- Set the global record quantization step [1 - 32]
Set instrument XXX's [[Instruments#Instrument_Properties|global pitch transpose]] [-120 - 120].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/record/quantization(boolean)
* '''/renoise/song/instrument/XXX/volume(number)'''
-- Enable or disable the global record quantization
Set instrument XXX's [[Instruments#Instrument_Properties|global volume]] [0 - db2lin(6)].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/sequence/schedule_add(number)
* '''/renoise/song/instrument/XXX/volume_db(number)'''
-- Add a scheduled sequence playback pos
Set instrument XXX's [[Instruments#Instrument_Properties|global volume]] in dB [0 - 6].<br />
''(XXX is the instrument index, -1 chooses the currently selected instrument)''


* /song/sequence/schedule_set(number)
* '''/renoise/song/lpb(number)'''
-- Replace the current schedule playback pos
Set the song's current [[Transport Panel#Song Parameters|Lines Per Beat]] value [1 - 255].


* /song/sequence/slot_mute(number, number)
* '''/renoise/song/record/metronome'''
-- Mute the given track, sequence slot in the matrix
Enable or disable the [[Transport_Panel|metronome]].


* /song/sequence/slot_unmute(number, number)
* '''/renoise/song/record/metronome_precount'''
-- Unmute the given track, sequence slot in the matrix
Enable or disable the global [[Transport_Panel|metronome]] precount.


* /song/sequence/trigger(number)
* '''/renoise/song/record/quantization(boolean)'''
-- Set playback pos to the specified sequence pos
Enable or disable the global [[Pattern_Editor#Pattern_Editor_Control_Panel|Record Quantization]].


* /song/tpl(number)
* '''/renoise/song/record/quantization_step(number)'''
-- Set the songs current Ticks Per Line [1 - 16]
Set the global [[Pattern_Editor#Pattern_Editor_Control_Panel|Record Quantization]] step value [1 - 32].


* /song/track/XXX/device/XXX/bypass(boolean)
* '''/renoise/song/sequence/schedule_add(number)'''
-- Set bypass status of an device [true or false]
Add a scheduled [[Pattern_Sequencer#Triggering_Patterns|sequence playback position]].
XXX is the device index, -1 the currently selected device


* /song/track/XXX/device/XXX/set_parameter_by_index(number, number)
* '''/renoise/song/sequence/schedule_set(number)'''
-- Set parameter value of an device [0 - 1]
Replace the currently scheduled [[Pattern_Sequencer#Triggering_Patterns|sequence playback]] position.
XXX is the device index, -1 the currently selected device


* /song/track/XXX/device/XXX/set_parameter_by_name(string, number)
* '''/renoise/song/sequence/slot_mute(number, number)'''
-- Set parameter value of an device [0 - 1]
Mute the [[Pattern_Matrix#Muting_Blocks|specified track at the specified sequence slot]] in the matrix.
XXX is the device index, -1 the currently selected device


* /song/track/XXX/mute
* '''/renoise/song/sequence/slot_unmute(number, number)'''
-- Mute track XXX
Unmute the [[Pattern_Matrix#Muting_Blocks|specified track at the specified sequence slot]] in the matrix.
XXX is the track index, -1 the currently selected track


* /song/track/XXX/output_delay(number)
* '''/renoise/song/sequence/trigger(number)'''
-- Set track XXX's delay in ms [-100 - 100]
Set the playback position to the specified [[Pattern_Sequencer#Triggering_Patterns|sequence position]].
XXX is the track index, -1 the currently selected track


* /song/track/XXX/postfx_panning(number)
* '''/renoise/song/tpl(number)'''
-- Set track XXX's post FX panning [-50 - 50]
Set the song's current [[Song_Options#Playback_Options|Ticks Per Line]] value [1 - 16].
XXX is the track index, -1 the currently selected track


* /song/track/XXX/postfx_volume_db(number)
* '''/renoise/song/track/XXX/device/XXX/bypass(boolean)'''
-- Set track XXX's post FX volume in dB [-200 -  3]
Enable or disable the [[Effect Chains#Common_Effect_Layout_and_Controls|bypassing]] of an [[Effect Chains|effect device]].<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/postfx_volume(number)
* '''/renoise/song/track/XXX/device/XXX/set_parameter_by_index(number, number)'''
-- Set track XXX's post FX volume [0 - db2lin(3)]
Set the value of a parameter of an [[Effect Chains|effect device]] [0 - 1].<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/prefx_panning(number)
* '''/renoise/song/track/XXX/device/XXX/set_parameter_by_name(string, number)'''
-- Set track XXX's pre FX panning [-50 - 50]
Set the value of a parameter of an [[Effect Chains|effect device]] [0 - 1].<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/prefx_volume_db(number)
* '''/renoise/song/track/XXX/mute'''
-- Set track XXX's pre FX volume in dB [-200 - 3]
[[Pattern_Editor#Muting_Tracks|Mute track]] XXX.<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/prefx_volume(number)
* '''/renoise/song/track/XXX/unmute'''
-- Set track XXX's pre FX volume [0 - db2lin(3)]
[[Pattern_Editor#Muting_Tracks|Unmute track]] XXX.<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/prefx_width(number)
* '''/renoise/song/track/XXX/solo'''
-- Set track XXX's pre FX width [0, 1]
[[Pattern_Editor#Muting_Tracks|Solo track]] XXX.<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/solo
* '''/renoise/song/track/XXX/output_delay(number)'''
-- Solo track XXX
Set track XXX's [[Effect_Chains#Pre_and_Post_Mixer_Effects|pre-FX delay]] in ms [-100 - 100].<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /song/track/XXX/unmute
* '''/renoise/song/track/XXX/postfx_panning(number)'''
-- Unmute track XXX
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|post-FX panning]] [-50 - 50].<br />
XXX is the track index, -1 the currently selected track
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/continue
* '''/renoise/song/track/XXX/postfx_volume(number)'''
-- Continue playback
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|post-FX volume]] [0 - db2lin(3)].<br />
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/loop/block_move_backwards
* '''/renoise/song/track/XXX/postfx_volume_db(number)'''
-- Move loop block one segment backwards
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|post-FX volume]] in dB [-200 - 3].<br />
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/loop/block_move_forwards
* '''/renoise/song/track/XXX/prefx_panning(number)'''
-- Move loop block one segment forwards
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|pre-FX panning]] [-50 - 50].<br />
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/loop/block(boolean)
* '''/renoise/song/track/XXX/prefx_volume(number)'''
-- Enable or disable pattern block looping
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|pre-FX volume]] [0 - db2lin(3)].<br />
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/loop/pattern(boolean)
* '''/renoise/song/track/XXX/prefx_volume_db(number)'''
-- Enable or disable looping the current pattern
Set track XXX's [[Mixer#Pre.2FPost_Volume_and_Panning_Concept|pre-FX volume]] in dB [-200 - 3].<br />
The thread 'Win32 Thread' (0x1120) has exited with code 0 (0x0).
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/loop/sequence(number, number)
* '''/renoise/song/track/XXX/prefx_width(number)'''
-- Disable or set a new sequence loop range
Set track XXX's [[Effect_Chains#Pre_and_Post_Mixer_Effects|pre-FX width]] [0, 1].<br />
''(XXX is the device index, -1 chooses the currently selected device)''


* /transport/panic
* '''/renoise/transport/continue'''
-- Stop playback and reset all playing instruments and DSPs
Continue song playback.


* /transport/start
* '''/transport/loop/block(boolean)'''
-- Start playback or restart playing the current pattern
Enable or disable pattern [[Transport Panel#Song Parameters|Block Loop]].


* /transport/stop
* '''/renoise/transport/loop/block_move_backwards'''
-- Stop playback
Move the [[Transport Panel#Song Parameters|Block Loop]] one segment backwards


* /trigger/midi(number)
* '''/renoise/transport/loop/block_move_forwards'''
-- Trigger a raw MIDI event. arg#1: the MIDI event as number
Move the [[Transport Panel#Song Parameters|Block Loop]] one segment forwards


* /trigger/note_off(number, number, number)
* '''/renoise/transport/loop/pattern(boolean)'''
-- Trigger a Note-Off. arg#1: instrument (-1 for the currently selected one), arg#2: track (again -1 for the selected one). arg#3: note value (0-119).
Enable or disable [[Transport_Panel|looping the current pattern]].


* /trigger/note_on(number, number, number, number)
* '''/renoise/transport/loop/sequence(number, number)'''
-- Trigger a Note-On. arg#1: instrument (-1 for the currently selected one), arg#2: track (again -1 for the selected one). arg#3: note value (0-119), arg#4: velocity (0-127)
Disable or set a new [[Pattern_Sequencer#Looping_Patterns|sequence loop]] range.


* '''/renoise/transport/panic'''
Stop song playback and silence all playing instruments and effects.
* '''/renoise/transport/start'''
Start song playback or restart playing the current pattern.
* '''/renoise/transport/stop'''
Stop song playback.
* '''/renoise/trigger/midi(number)'''
Trigger a raw MIDI event.<br />
''arg#1: the MIDI event as number''
* '''/renoise/trigger/note_off(number, number, number)'''
Trigger a [[Playing_Notes_with_the_Computer_Keyboard#Note_Off|Note OFF]].<br />
''arg#1: instrument (-1 chooses the currently selected one)''<br />
''arg#2: track (-1 for the current one)''<br />
''arg#3: note value (0-119)''
* '''/renoise/trigger/note_on(number, number, number, number)'''
Trigger a Note-On.<br />
''arg#1: instrument (-1 for the currently selected one)''<br />
''arg#2: track (-1 for the current one)''<br />
''arg#3: note value (0-119)''<br />
''arg#4: velocity (0-127)''
Note that the default OSC implementation can be extended by editing the file ''"GlobalOscActions.lua"'' in the ''"Resources/Scripts"'' folder, found within the directory where you installed Renoise ''(on MacOS this is found in the app bundle).




Line 181: Line 237:
=== TouchOSC via Duplex ===
=== TouchOSC via Duplex ===


The Duplex Tool comes with a Device preset for TouchOSC, an iPhone / iPod Touch / iPad app, that allows those devices to control Renoise via OSC. To use it, select ''"TouchOSC"'' from the ''"Device"'' pulldown menu in the Duplex Browser and adjust the configuration as needed within the ''"Settings"'' dialog box. Then, using the TouchOSC app on the Apple device, you can change the values of the various knobs and sliders on the screen to control various features of Renoise.
The Duplex [[Tools|Tool]] comes with a Device preset for TouchOSC, an iPhone / iPod Touch / iPad app that allows those devices to control Renoise via OSC. To use it, select ''"TouchOSC"'' from the ''"Device"'' drop-down menu in the Duplex Browser and adjust the configuration as needed within the ''"Settings"'' dialog box. Then, using the TouchOSC app on the Apple device, you can change the values of the various knobs and sliders on the screen to control various features of Renoise.
 
Duplex uses Renoises Scripting API to communicate with touch OSC, so its fully configurable, and can also be used as en example on how to wrap up your own OSC implementation in Renoise.


Duplex uses the [https://github.com/renoise/xrnx Renoise Scripting API] to communicate with TouchOSC, meaning that it's fully configurable, and can also be used as an example on how to wrap up your own OSC implementation in Renoise.


=== Pure Data ===
=== Pure Data ===


PD (aka Pure Data) is a real-time graphical programming environment for audio, video, and graphical processing. Pd was created to explore ideas of how to further refine the Max paradigm with the core ideas of allowing data to be treated in a more open-ended way and opening it up to applications outside of audio and MIDI, such as graphics and video. There are [http://puredata.info/downloads different versions available to download] for PC, Mac and Linux.
PD (aka Pure Data) is a real-time graphical programming environment for audio, video, and graphical processing. PD was created to explore ideas of how to further refine the Max paradigm with the core idea of allowing data to be treated in a more open-ended manner by it up to applications outside of audio and MIDI, such as graphics and video. There are [http://puredata.info/downloads different versions available to download] for PC, Mac and Linux.


==== Using PD With Renoise Via OSC ====
==== Using PD With Renoise Via OSC ====


* First install PD, then download, unzip and open the [http://reg.s63.xrea.com/tutorial-26/sound/test-renoise-osc.zip "test-renoise-osc.pd" file] within PD.
* First install PD, then download, unzip and open the [http://reg.s63.xrea.com/tutorial-26/sound/test-renoise-osc.zip "test-renoise-osc.pd" file] within PD.
* In the top left corner you can set the port number to match the OSC port number you have chosen for Renoise ''[connect localhost XXXX]''. With Edit Mode ''(Ctrl + E)'' you can edit the numbers.
* In the top-left corner you can set the port number to match the [[#Setup|OSC port number]] you have chosen for Renoise ''[connect localhost XXXX]''. With Edit Mode ''(Ctrl + E)'' you can edit the numbers.
* To the right, you can start and stop playing Renoise with the ''[send / renoise / transport / start]'' and ''[send / renoise / transport / stop]'' buttons.
* To the right you can start and stop playing Renoise with the ''[send / renoise / transport / start]'' and ''[send / renoise / transport / stop]'' buttons.
* The test program comes with a set of commands already loaded in. Make sure a sample is loaded into into slot 00 within Renoise and press the "chord-test" button in PD. You should hear a chord being played. You can also click on the individual commands to hear the individual notes.
* The test program comes with a set of commands already loaded in. Make sure a sample is loaded into into slot 00 within Renoise and press the "chord-test" button in PD. You should hear a chord being played. You can also click on the individual commands to hear the individual notes.
* If you would like to enter new OSC messages yourself:
* If you would like to enter new OSC messages yourself:
** Select from the menu ''"Put -> Message"'', place the box on the screen and enter your desired command (check the Command List in [[#OSC Setup|OSC Setup]] for available commands).
** Select from the menu ''"Put -> Message"'', place the box on the screen and enter your desired command (check the [[#The_Default_OSC_Implementation_of_Renoise|OSC Command List]] for available commands).
** Connect the new message box by hovering over the bottom left corner (the cursor will become a circle) then clicking and dragging over to the ''"sendOSC"'' box.
** Connect the new message box by hovering over the bottom left corner (the cursor will become a circle) then clicking and dragging over to the ''"sendOSC"'' box.
** Cancel edit mode with ''(Ctrl + E)'' and click the box to send the message to Renoise via OSC.
** Cancel edit mode with ''(Ctrl + E)'' and click the box to send the message to Renoise via OSC.

Latest revision as of 17:59, 1 April 2022

Open Sound Control

Open Sound Control (OSC) was created as a successor to the MIDI control protocol. It enables communication between computer software, sound synthesizers and other multimedia devices that support OSC.

Its advantages over MIDI include: an open-ended and dynamic URL-style symbolic naming scheme, symbolic and high-resolution numeric argument data, pattern matching language to specify multiple recipients of a single message, high resolution time tags and "bundles" of messages whose effects must occur simultaneously. The protocol is also not bound by specific hardware (i.e. MIDI cables and ports) and can be transferred across any network connection, even remotely via the internet.

This makes OSC much more powerful than MIDI, but due to its open-ended specification, both the OSC client (which sends OSC data) and the OSC server (which receives data, i.e. Renoise) must be separately configured, unlike MIDI which is essentially "Plug & Play".

For more general information about OSC, see the OSC Wikipedia page and the official OSC homepage.


Setup

Renoise can use OSC in one of two ways:

  1. Using Renoise as an OSC server (receiving messages) via a preconfigured OSC message set.
  2. Using the fully configurable and customisable Renoise scripting API. This allows you to send and receive any form of OSC message and define your own communication protocol, but obviously requires programming.


To set up Renoise as an OSC server, open the OSC options panel by choosing "Edit > Preferences > OSC" from the main menu:

3.2 preferences-osc.png

  • Enable Server: This starts the Renoise OSC server and the network port is changed to a listening state, so you may get a firewall warning the first time this is enabled.
  • Incoming Messages: This panel simply displays messages relevant to the networking process.
  • Protocol: Select the protocol which the Renoise server will use:
    • Udp: Provides a high transfer rate with lower reliability than Tcp.
    • Tcp: Provides a lower transfer rate than Udp with higher reliability.
  • Port: Select the Port number for messages to be transferred over. Generally, a number greater than 1024 is used.
  • Command List: Lists the various commands that it is possible to use to communicate with Renoise.
  • Explanation Panel: When clicking on a command in the Command List, an explanation of what the command does is displayed here.


The Default OSC Implementation of Renoise

  • /renoise/evaluate(string)

Evaluate a custom Lua expression (e.g. renoise.song().transport.bpm = 234).

  • /renoise/song/bpm(number)

Set the song's current BPM value [20 - 999].

  • /renoise/song/edit/mode(boolean)

Set the song's global Edit Mode on or off.

  • /renoise/song/edit/octave(number)

Set the song's current octave value [0 - 8].

  • /renoise/song/edit/pattern_follow(boolean)

Enable or disable the global Pattern Follow mode.

  • /renoise/song/edit/step(number)

Set the song's current Edit Step value [0 - 8].

  • /renoise/song/instrument/XXX/macro1-8(number)

Set instrument XXX's macro parameter value [0 - 1].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/monophonic(boolean)

Enable or disable instrument XXX's mono mode.
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/monophonic_glide(number)

Set instrument XXX's mono glide amount [0-255].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/phrase_playback(string)

Set instrument XXX's phrase playback mode [Off, Program, Keymap].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/phrase_program(number)

Set instrument XXX's phrase program number [0 - 127].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/quantize(string)

Set instrument XXX's quantization method [None, Line, Beat, Bar].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/scale_key(string)

Set instrument XXX's note scaling key [C, C#... B].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/scale_mode(string)

Set instrument XXX's note scaling mode.
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/transpose(number)

Set instrument XXX's global pitch transpose [-120 - 120].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/volume(number)

Set instrument XXX's global volume [0 - db2lin(6)].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/instrument/XXX/volume_db(number)

Set instrument XXX's global volume in dB [0 - 6].
(XXX is the instrument index, -1 chooses the currently selected instrument)

  • /renoise/song/lpb(number)

Set the song's current Lines Per Beat value [1 - 255].

  • /renoise/song/record/metronome

Enable or disable the metronome.

  • /renoise/song/record/metronome_precount

Enable or disable the global metronome precount.

  • /renoise/song/record/quantization(boolean)

Enable or disable the global Record Quantization.

  • /renoise/song/record/quantization_step(number)

Set the global Record Quantization step value [1 - 32].

  • /renoise/song/sequence/schedule_add(number)

Add a scheduled sequence playback position.

  • /renoise/song/sequence/schedule_set(number)

Replace the currently scheduled sequence playback position.

  • /renoise/song/sequence/slot_mute(number, number)

Mute the specified track at the specified sequence slot in the matrix.

  • /renoise/song/sequence/slot_unmute(number, number)

Unmute the specified track at the specified sequence slot in the matrix.

  • /renoise/song/sequence/trigger(number)

Set the playback position to the specified sequence position.

  • /renoise/song/tpl(number)

Set the song's current Ticks Per Line value [1 - 16].

  • /renoise/song/track/XXX/device/XXX/bypass(boolean)

Enable or disable the bypassing of an effect device.
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/device/XXX/set_parameter_by_index(number, number)

Set the value of a parameter of an effect device [0 - 1].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/device/XXX/set_parameter_by_name(string, number)

Set the value of a parameter of an effect device [0 - 1].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/mute

Mute track XXX.
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/unmute

Unmute track XXX.
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/solo

Solo track XXX.
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/output_delay(number)

Set track XXX's pre-FX delay in ms [-100 - 100].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/postfx_panning(number)

Set track XXX's post-FX panning [-50 - 50].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/postfx_volume(number)

Set track XXX's post-FX volume [0 - db2lin(3)].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/postfx_volume_db(number)

Set track XXX's post-FX volume in dB [-200 - 3].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/prefx_panning(number)

Set track XXX's pre-FX panning [-50 - 50].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/prefx_volume(number)

Set track XXX's pre-FX volume [0 - db2lin(3)].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/prefx_volume_db(number)

Set track XXX's pre-FX volume in dB [-200 - 3].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/song/track/XXX/prefx_width(number)

Set track XXX's pre-FX width [0, 1].
(XXX is the device index, -1 chooses the currently selected device)

  • /renoise/transport/continue

Continue song playback.

  • /transport/loop/block(boolean)

Enable or disable pattern Block Loop.

  • /renoise/transport/loop/block_move_backwards

Move the Block Loop one segment backwards

  • /renoise/transport/loop/block_move_forwards

Move the Block Loop one segment forwards

  • /renoise/transport/loop/pattern(boolean)

Enable or disable looping the current pattern.

  • /renoise/transport/loop/sequence(number, number)

Disable or set a new sequence loop range.

  • /renoise/transport/panic

Stop song playback and silence all playing instruments and effects.

  • /renoise/transport/start

Start song playback or restart playing the current pattern.

  • /renoise/transport/stop

Stop song playback.

  • /renoise/trigger/midi(number)

Trigger a raw MIDI event.
arg#1: the MIDI event as number

  • /renoise/trigger/note_off(number, number, number)

Trigger a Note OFF.
arg#1: instrument (-1 chooses the currently selected one)
arg#2: track (-1 for the current one)
arg#3: note value (0-119)

  • /renoise/trigger/note_on(number, number, number, number)

Trigger a Note-On.
arg#1: instrument (-1 for the currently selected one)
arg#2: track (-1 for the current one)
arg#3: note value (0-119)
arg#4: velocity (0-127)


Note that the default OSC implementation can be extended by editing the file "GlobalOscActions.lua" in the "Resources/Scripts" folder, found within the directory where you installed Renoise (on MacOS this is found in the app bundle).


Examples

TouchOSC via Duplex

The Duplex Tool comes with a Device preset for TouchOSC, an iPhone / iPod Touch / iPad app that allows those devices to control Renoise via OSC. To use it, select "TouchOSC" from the "Device" drop-down menu in the Duplex Browser and adjust the configuration as needed within the "Settings" dialog box. Then, using the TouchOSC app on the Apple device, you can change the values of the various knobs and sliders on the screen to control various features of Renoise.

Duplex uses the Renoise Scripting API to communicate with TouchOSC, meaning that it's fully configurable, and can also be used as an example on how to wrap up your own OSC implementation in Renoise.

Pure Data

PD (aka Pure Data) is a real-time graphical programming environment for audio, video, and graphical processing. PD was created to explore ideas of how to further refine the Max paradigm with the core idea of allowing data to be treated in a more open-ended manner by it up to applications outside of audio and MIDI, such as graphics and video. There are different versions available to download for PC, Mac and Linux.

Using PD With Renoise Via OSC

  • First install PD, then download, unzip and open the "test-renoise-osc.pd" file within PD.
  • In the top-left corner you can set the port number to match the OSC port number you have chosen for Renoise [connect localhost XXXX]. With Edit Mode (Ctrl + E) you can edit the numbers.
  • To the right you can start and stop playing Renoise with the [send / renoise / transport / start] and [send / renoise / transport / stop] buttons.
  • The test program comes with a set of commands already loaded in. Make sure a sample is loaded into into slot 00 within Renoise and press the "chord-test" button in PD. You should hear a chord being played. You can also click on the individual commands to hear the individual notes.
  • If you would like to enter new OSC messages yourself:
    • Select from the menu "Put -> Message", place the box on the screen and enter your desired command (check the OSC Command List for available commands).
    • Connect the new message box by hovering over the bottom left corner (the cursor will become a circle) then clicking and dragging over to the "sendOSC" box.
    • Cancel edit mode with (Ctrl + E) and click the box to send the message to Renoise via OSC.