Questions tagged [reaper]

REAPER is digital audio workstation software: a complete multitrack audio and MIDI recording, editing, processing, mixing, and mastering environment.

21 questions
6
votes
1 answer

Installing Older FFmpeg Version Using Homebrew

I have the latest version of Homebrew and FFmpeg on OSX 10.9.5. I need to install an older version of FFmpeg using Homebrew, rather than just running: brew install ffmpeg Could someone please explain how to do this? I know older versions of FFmpeg…
Sir Bad News
  • 61
  • 1
  • 4
3
votes
2 answers

Making a fix scaled timeline in HTML/CSS/JS

Sorry, this is going to be a little long... A bit of context As part of a larger project I'm trying to make a project timeline to include in a webpage used to remote control a music making program (called Reaper for those who are interested). I'm…
3
votes
3 answers

Working with a severely limited interpreted language

I'm coding in an embedded language called JS. I want to be able to call three functions in any order. (ABC, ACB, BAC, BCA, CBA, CAB.) The trick? The language doesn't have user-defined functions. It does have a conditional and a looping construct. I…
Nosredna
  • 83,000
  • 15
  • 95
  • 122
2
votes
1 answer

Run tkinter GUI under REAPER embedded environment

I've tried tkinter hello_world code in Reaper 5.9 64bit Mac in High Sierra. ``` from tkinter import * root = Tk() root.title('Hello Reaper!') root.mainloop() ``` But nothing showed up. No errors came up in the log window, either. Any…
kakyo
  • 10,460
  • 14
  • 76
  • 140
1
vote
1 answer

Using a MessageGroupStoreReaper with an Aggregator

The reference documentation recommends using a reaper with an aggregator in order to prevent memory leaks due to stacked-up MessageGroup metadata. https://docs.spring.io/spring-integration/reference/html/message-routing.html#aggregator Is this…
al.truisme
  • 450
  • 2
  • 11
1
vote
1 answer

K8ssandra deployment has no Reaper or Grafana service

I'm pretty new with k8s and k8ssandra project. I just deployed k8ssandra operator followed https://docs-v2.k8ssandra.io/ V2 version instruction on k8s cluster. After that, I could not found the reaper or grafana services and pods. What I expecting…
7072129
  • 29
  • 8
1
vote
1 answer

What language do Reaper JS plugins use?

I was wondering what I could do with the ReaJS plugins for my daw. But there is no information about the language that they use. I would say just by the name that is some Javascript Framework, but I am not very sure. Can someone confirm this…
NaN
  • 11
  • 1
1
vote
0 answers

How to find out that connecting disconnected midiDevice failed in C++/WinRT

I'm creating a plugin for the REAPER DAW to support a BLE MIDI input. Code is as follows: fire_and_forget MidiDeviceService::connectDevice(hstring deviceId, bool updateConfig = true) { if (!deviceId.empty()) { currentDevice =…
1
vote
1 answer

Running PyQt4 script more than once inside REAPER results in SIP error

Some Context: REAPER is a Digital Audio Workstation that has an extensive scripting API with Lua, Python, C/C++ and EEL bindings. I haven't found much information regarding how it handles Python internally. On the surface the configuration involves…
meta
  • 11
  • 1
  • 3
0
votes
1 answer

Writing a program which can open and use another program: (Audio program)

I've got a project going on, far away from complete, a stand alone audio mixer/effects processor. I plan to eventually, have all of my effects in stand alone program as VST, AU, and maybe TDM plugins. I would like to be able to batch convert all…
MVTC
  • 845
  • 11
  • 28
0
votes
0 answers

Autohotkey run right only at odd times pushing button on Reaper the music production software. Run completely right on notepad

I have an Autohotkey script that is a bunch of code in this form for example: m:: clean:="{BackSpace}S{Space}Clean{Enter}" If (last_effect <> clean) { Send, c Send, %clean% sleep, 01 Send, {Esc} …
BlackXIII
  • 89
  • 6
0
votes
0 answers

how do i create my own random number generator?

i'm trying to make a seeded random number generator. all i want as a function to take in a seed, increment and max value and then return a result. i'm not too worried about things being uniform, but the more uniform the better. the purpose for this…
0
votes
0 answers

Use Reascript to render a project and change the name of the output file

i want to use Reascript to render a project and change the name of the output file. I visited the API page but its not really clear how to do so. The function reaper.RenderFileSection() doesn't seems to work
0
votes
0 answers

Code for analog joystick mod wheel do nothing

This script is to get an analog joystick to emulate a midi mod wheel on vertical axis and a pitch blend on the horizontal axis but when i test it i have only the pitch blend working but the mod wheel do nothing. Here the code : // buttons (bitmask),…
0
votes
1 answer

BR_SetTakeSourceFromFile missing in Reaper DAW v6.73

I am evaluating Reaper for automatic music production. "Automatic" like "no human interaction". According to what I have learned in my research, it seems to be possible. Currently I am stuck. A vital part of my work is importing MIDI files.…
AI-Guru
  • 1
  • 3
1
2