Forum

U-he updates most of their vst instruments, free and paid

Renoise Forum - August 16, 2021 - 03:56

Just wanted to mention that if your a user of U-he instruments, Zebra2, Podolski, Ace, Bazille, others, that there has been a recent update/upgrade to most of them. The most obvious changes have been to the GUI’s but there have been some "under-the-hood improvements as well. You can read about it here on the KVR forum for U-he: u-he Forum - KVR Audio and the U-he website: https://u-he.com/

Cheers.

1 post - 1 participant

Read full topic

Categories: Forum

Our New Infinity - Number Theory

Renoise Forum - August 15, 2021 - 21:57

Number theory is a branch of pure mathematics devoted primarily to the study of the integers and integer-valued functions.

1 post - 1 participant

Read full topic

Categories: Forum

Our New Infinity - Numbers in Motion

Renoise Forum - August 15, 2021 - 21:56

Mathematical Quadruvium:

Arithmetic (Numbers at Rest)
Geometry (Resting Quantities)
Music (Numbers in Motion)
Astronomy (Numbers in Motion).

1 post - 1 participant

Read full topic

Categories: Forum

Our New Infinity - Manifold

Renoise Forum - August 15, 2021 - 21:54

In mathematics, a manifold is a topological space that locally resembles Euclidean space near each point.

2 posts - 2 participants

Read full topic

Categories: Forum

Detect if an AudioDevice object is part of sampler dsp lane or normal

Renoise Forum - August 15, 2021 - 14:25

Hi,

I have an AudioDevice object. It might be in the samplers dsp lane or in the track dsp lane. Can I determine this, only knowing the AudioDevice object?

1 post - 1 participant

Read full topic

Categories: Forum

EQ Helper Tool development

Renoise Forum - August 15, 2021 - 13:37

Hi,

I am writing this little EQ Helper tool. It provides a context menu on each eq and filter device for transposing. It also can transpose all eqs and filters of a song at once.

Currently it works for EQ5, EQ10, digital/analog filter and filter 3 correctly. I am also trying to add support for Melda MEqualizer (and later Pro Q maybe), but I have a hard to find a translation function for this. Also forgot most math stuff here.

This is the current translation function for MEqualizer:

translate = function (value, semitones) value = math.exp(value / 0.217147) * 19980 + 20 value = math.exp(semitones * math.log(2)/12) * value value = (value - 20) / 19980 value = 0.217147 * math.log(value) return math.max(0, math.min(1, value)) end

Lot of fishy stuff here. Maybe @OopsIFly has a clue

This is how the frequency slider scales:


Any math help here please?

Anyway here is the current version:
ffx.tools.EQHelper.xrnx (7.8 KB)

It might still produce problems with correct event/observable hooking, e.g. on song load etc, since I forgot to do this right. But maybe it already works. Please give me feedback.

There is a “pluginRegistry” in main.lua, in which you can add your own translation functions for other eq and filter plugins.

1 post - 1 participant

Read full topic

Categories: Forum

Find track of device

Renoise Forum - August 15, 2021 - 11:30

Hi,

I have an AudioDevice object and want to find its track. How to do that? Seems like I can’t compare the object with a trackDevice object directly…

This seems to be too few comparison then:

function EQHelper:findDeviceInTracks(device) for _, track in pairs(sng.tracks) do if (track.type ~= renoise.Track.TRACK_TYPE_GROUP) then for _, trackDevice in pairs(track.devices) do if (device.display_name == trackDevice.display_name and device.device_path == trackDevice.device_path) then local isSame = true for x = 1, #device.parameters do if (device.parameters[x].value ~= trackDevice.parameters[x].value) then isSame = false break end end if (isSame == true) then return track end end end end end return nil end

Would like to compare the object memory pointers directly or something… Maybe I already did that, but I forgot how.

1 post - 1 participant

Read full topic

Categories: Forum

Renoise entering commands on its own?

Renoise Forum - August 14, 2021 - 23:22

When the pattern editor is armed, Renoise seems to be entering commands randomly. I thought it may be a faulty keyboard hooked up to my laptop, so I unplugged and just using the laptop keyboard but still happening.

Those: 02 M0 470E

They just show up when armed at random places in the pattern. Tried a reboot, still happening.
I also have an Axiom 61 plugged in I use to enter notes…maybe something is funky with that?
Any ideas?

Mac OS 10.14.6
Renoise 3.3.2

2 posts - 1 participant

Read full topic

Categories: Forum

Can you just load and play in Renoise?

Renoise Forum - August 14, 2021 - 22:03

Hi,

Let’s say you are using FL or Ableton. You create a track and load it with an audio sample. Then, you click the play button. Your track start playing. Now, can I do that in Renoise without assigning a note in the track?

Cheers

1 post - 1 participant

Read full topic

Categories: Forum

Translation functions of all Renoise filter devices

Renoise Forum - August 14, 2021 - 20:00

Hi,

I am looking for all the translation functions of the cutoff parameters of all the Renoise filter devices. I think @OopsIFly did that? Can you help me? 8)

Also for melda eqs, I had the following working formula, but it’s expecting key number, can’t wrap my brain around it converting it to frequency offset. freq_start is 20, freq_end is 20000:

function func(a,b,freq_start,freq_end) local keynum = b * 119 local keyoffset = a * 119-60 local C5 = 1391.915051294 local retval = C5 * pow(2.0, ((keynum + keyoffset) - (12 * 5)) * (1.0 / 12.0)) if (retval < 0) then retval = 0; end retval = (log10(retval) - log10(freq_start)) / (log10(freq_end) - log10(freq_start)) if (retval > 1) then retval = 1; end return retval end

I am writing a little tool “EQ helper” which provides transpose for EQ devices. So far it only works correctly for EQ5/EQ10:
ffx.tools.EQHelper.xrnx (7.2 KB)

Have a look into the “pluginRegistry” inside the main.lua.

1 post - 1 participant

Read full topic

Categories: Forum

Sourcecode update from outer world

Renoise Forum - August 14, 2021 - 09:18

Is it possible now that you can use an external editor for tool coding, so Renoise auto-detects file changes and then will recompile? I remember that there was something changed lately…

1 post - 1 participant

Read full topic

Categories: Forum

Note + instrument name convention

Renoise Forum - August 12, 2021 - 22:20

Hei,

First week using Renoise and I’m still strong

One thing I noted is that in the pattern editor, the note and the instrument are written like C-400. Would be more UX friendly if it was written like C4-00? I think A2, C3, D1 are very common way to name notes, specially when you study music theory or piano. At least, this is my thought.

As I still didn’t figure out why notes are named like that, any enlightenment would be great.

Cheers

3 posts - 3 participants

Read full topic

Categories: Forum

[Bug] Renoise 3.3.2 and tools: Sliders not work with CTRL + drag mouse

Renoise Forum - August 12, 2021 - 16:41

R3.3.2, W10 x64
There has probably been some change under the hood in the latest versions of Renoise that prevents you from using the slider bar fine-tuning (CTRL + mouse pointer dragging the slider bar). This only happens on normal sliders and probably small ones. In the knobs it works correctly. This happens in Renoise (all platforms) and in the tools.

I think I remember there was a last change in API 6.1 that maybe has something to do with this.

@taktik., could you bring back the fine adjustment on the sliders with CTRL + mouse drag?

Related issue: Shortcut for fine grained slider movements doesn't work? - #7 by Raul

1 post - 1 participant

Read full topic

Categories: Forum

I'm evaluating Renoise. Help needed!

Renoise Forum - August 11, 2021 - 20:56

Hi,

A friend of mine recommend Renoise. At first, as most of the users, I cursed the interface (my friend laugh till today). But bit by bit I’m getting used to it. However, I work heavily with MIDI files, from creating chords progression to drum patterns. So, my thoughts are:

  1. Renoise is not MIDI “friendly”, is that correct?
  2. If the above is correct, how do you write your chords? How do you overcome the use of MIDIs?
  3. If #1 is correct, it means that Renoise is more sample based and MIDI is not its thing. Is that correct?
  4. I’m into synthwave production. Is that a style that Renoise can do?

Sorry, if those questions are dumb, but trackers are new to me and I still don’t know what they can do, and how they do things. So, any help here will be very appreciated.

Cheers,
Castle

1 post - 1 participant

Read full topic

Categories: Forum

Filter - Step Filter Q

Renoise Forum - August 11, 2021 - 17:30

Hi all, hope you good.

When writing in automation for filters, I have no problem creating smooth sweeps and such but is there a way to set the quantise or settings so that I can have the filter step up or down evenly on every 4th or 16th beat without having to draw in points connecting the filter steps? Basically like a stepfilter VST would do.

I hope I explained that well. If not, 10000 apologies.

Thanks in advance.

1 post - 1 participant

Read full topic

Categories: Forum

I will be talking about Protracker LIVE next tuesday

Renoise Forum - August 11, 2021 - 09:19

On Redirecting... I will be talking about Protracker 2 on the Amiga which is the ancestor of our fellow Renoise.

The talk itself will generally be in german, but on the other hand you will see on original Amiga Hardware how difficult it was, making music in those days.

The Setup is: Amiga 500, Protracker 2.13, ST-01-Sampledisk.

Date: Aug 17, 2021 - 6:30 pm CET

1 post - 1 participant

Read full topic

Categories: Forum

Is there a way to answer a topic in "silent" mode?

Renoise Forum - August 10, 2021 - 23:04

All is in the title…

Answer to a topic without this topic getting put at top of the list…without sending personal messages

1 post - 1 participant

Read full topic

Categories: Forum

Tooldev: renoise.song() triggers error when executed during renoise startup

Renoise Forum - August 10, 2021 - 21:26

It seems that renoise does not have the renoise.song() function/object ready at startup, while tools that could access it are already being loaded. Executing that function before the startup/template song is loaded results in an error.

If a tool uses the function in it’s startup code the tool will fail loading, breaking the tool. However once renoise has successfully loaded, and tools are reloaded manually, the function works as expected, even when used in the startup code of the tool.

Expected behavior: either tools to be loaded once the renoise.song() function is ready for use, or the function passing a value like nil to indicate that the system is not ready yet.

I have created a little testing tool to demonstrate the error. Install the xrnx - it will print a message dialog stating success while being installed. Now shut down renoise. Start renoise again - the tool will execute renoise.song() and trigger the error message, the tool will not be loaded. Reloading the tools once renoise has finished startup will not trigger the error, but successfully load the tool and print the success message.

Tested with Renoise 3.3.2 on Linux.

song_object_bug.xrnx (602 Bytes)

1 post - 1 participant

Read full topic

Categories: Forum

Using the pattern font from Redux in Renoise

Renoise Forum - August 10, 2021 - 10:00

Simple as that really, I find the font style a little easier on the eyes in Redux as compared to Renoise.

Thanks.

1 post - 1 participant

Read full topic

Categories: Forum

Akai Mpc,Akai force or Ni Maschine Plus?

Renoise Forum - August 9, 2021 - 21:35

Hello you guys i hope all is well.So i am looking for a standalone unit to get away from the Pc because i am really tired of the mouse and keyboard and the Pc- Daw environment is killing my creativity.I really want to go for a more hands on approach so i am interested in your opinions on this.Do you have any of this hardware Akai Mpcs,Akai force or Ni Maschine Plus?I have watched like a million videos about them and i am closer to the Akai force,i find that the Mpcs and the Maschine is more aimed at beat makers although i ve seen people make other genres on them.What are your thought on this?Please I need opinions from people who already own or had in the past some kind of a standalone unit like the ones i mentioned above

2 posts - 2 participants

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator - Forum