Skip to main content

Construct REAPER projects in Python.

Project description

reathon

reathon is a python package for constructing REAPER session with native python constructs. The majority of the interface is a reflection of the .rpp file structure which itself is very similar to .xml with tags and elements (except each element is called a 'chunk'). As such, you may need to know a bit about the underlying structure of REAPER's file format before using something like this. A good way to do this is to make a REAPER project and open the project in a text editor. You might also refer to this document which is fairly exhaustive.

installation

You can git clone this repo, cd to it and then install via pip install -e reathon. You need to point pip to the folder containing setup.py, not the parent folder with examples and README.md etc.

You can also pip install reathon.

usage

reathon exposes objects for each type of 'chunk' or as I've called it node in the graph of objects in a session. A very simple example of a REAPER project with a single track would go as follows.

from reathon.nodes import * # import all of the reathon nodes

project = Project( # create an instance of a project
    Track() # and pass a Track() object to the constructor
)

project.write("basic.rpp") # write the project out to the path

We can construct such graphs in a variety of ways which lends reathon towards programmatic constructions of projects.

# Using Loops
from reathon.nodes import *

project = Project() # create an instance of a project

for x in range(1024):
    project.add(Track()) # use the add method of the project to add a Track()

project.write("loops.rpp") # write the project out to the path
# Comprehensions
from reathon.nodes import *
tracks = [Track() for x in range(100)]
project = Project(*tracks)
project.write("comprehensions.rpp") # write the project out to the path

A more complex example might be to arrange a series of sound files randomly along a single track, similar to a granular synthesiser. This example presents new reathon nodes you won't have seen before

from reathon.nodes import Project, Track, Item, Source # note new nodes Item() and Source()
from pathlib import Path
import random

sources = []

# create a source object for each of the .wav files in a directory (can you tell I love comprehensions)
sources = [
    Source(file=f'{str(x)}')
    for x in Path('my-sounds').rglob("*.wav") # you would point it to an actual folder of sounds, not just 'my-sounds'
]

track = Track() # create a blank Track()

pos = 0.0 # set our initial position to 0
for x in range(1000): # 1000 grains
    grain = random.choice(sources) # random file from our sources
    
    length = random.uniform(0.1, 0.5) # random length of the item
    track.add(
        Item(
            grain, # Item()'s have a child Source() node, which is randomly selected above
            position = pos, # and we set the position
            length = length # and we set the length
        )
    )
    pos += length # increment the position by the length to create contiguous blocks

project = Project(track) # create the project with our composed track
project.write("granular.rpp") # write it out

props

In the .rpp structure each 'chunk' can have various properties. For example, the ITEM chunk will have length and position properties that determine where in the timeline the item is positioned and the duration of the item. I don't want to implement functions for each of these so there are ways to insert arbitrary properties for each 'chunk', or what you are now familiar with as a reathon 'node'.

# modifiying properties with function arguments
from reathon.nodes import *
item = Item(
    length = 10, 
    position = 0.5
) # create a blank item 10 seconds in length a 0.5 seconds in the timeline
# the convention is you match the word of the property as lower case.
# if the property in the file is LENGTH, then the function argument is 'length'
track = Track(item)
project = Project(track)
project.write("properties1.rpp") # write the project out to the path
# modifiying properties by directly modifying the .props of the object
from reathon.nodes import *
item = Item() # create a blank item 10 seconds in length a 0.5 seconds in the timeline
item.props = [
    ["LENGTH", 10],
    ["POSITION", 0.5]
]
track = Track(item)
project = Project(track)
project.write("properties1.rpp") # write the project out to the path

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reathon-0.0.9.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

reathon-0.0.9-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file reathon-0.0.9.tar.gz.

File metadata

  • Download URL: reathon-0.0.9.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for reathon-0.0.9.tar.gz
Algorithm Hash digest
SHA256 45abcce5d17508440850ec291650c35d6670e3a20c4af4a8df910744f575327c
MD5 ac67f9f8b5b75466ff846d9fbb007e44
BLAKE2b-256 d4a837b96f136a9c598122e71bf1fb83399116366682750505954cb0e04a774a

See more details on using hashes here.

File details

Details for the file reathon-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: reathon-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for reathon-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 7f55af3864d1f99edf27069245d3b494ca2ae60c92756f8a87e31c6a327bbb1b
MD5 0a0c75186f642ba53fde0f5a75dd9d68
BLAKE2b-256 0d01f6113daeb534cbc4beec5cf63a5ac2b4da703c8d431cff63dd967df55a65

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page