Feed aggregator

Sound crackles at/above 30% CPU usage

Renoise Forum - December 21, 2020 - 16:38

All of a sudden I get sound crackles when using Renoise in 1080p resolution. Never happened before. It seems like it occurs when the CPU goes above 29-30% usage. Below that there are no crackles.

CPU: I7-10700K
GPU: RTX1060
32Gb Ram
Windows 10
Latest Renoise
Focusrite USB ASIO

1 post - 1 participant

Read full topic

Categories: Forum

Field recorder also as live usb mic and noise suppression

Renoise Forum - December 20, 2020 - 20:57

Hi,

I am looking for a portable USB field recorder device, which also works as an usb audio device/mic while connected to the computer, and also provides some kind of (digital) noise filter for ground noise. Couldn’t really find anything like that, but maybe I suck in googling, or the product descriptions aren’t very precise.

Any ideas?

2 posts - 2 participants

Read full topic

Categories: Forum

Feature Request – Peferences > Keys: Remember Last Viewed Key Assignment

Renoise Forum - December 19, 2020 - 23:54

(topic withdrawn by author, will be automatically deleted in 24 hours unless flagged)

1 post - 1 participant

Read full topic

Categories: Forum

Somebody needs our help read

Renoise Forum - December 19, 2020 - 20:49

So i was in another forum and there is a 26yrs old boy & autistic also suffering from depression. He made a topic talking about how he is not very well and was afraid about posting his music.I suggested that he must deal with depression first and stop anything that makes him anxious including music making.Lets give the boy some love on his SoundCloud.Here is one of his tracks leave him a comment and a like he really needs a boost.

1 post - 1 participant

Read full topic

Categories: Forum

Failed to parse Config.xml and KeyBindings.xml after every reboot

Renoise Forum - December 19, 2020 - 08:06

Hello, back here with another config problem. This time it happens consistently. The steps to reproducing the problem might be really short because that’s how I reproduced the problem on every boot.

Here are the steps to reproduce the problem:

  1. Open Renoise. At this stage the error will pop up already, but let’s do some testing here.
  2. Since the config will save at program end, close Renoise.
  3. Shut down and boot your computer again. A restart also works.
  4. After the reboot, open Renoise.

When I check both the Config.xml file and KeyBindings.xml file, the contents were empty. I have uploaded both here, even though it might not look like much.
Config.xml (50.3 KB) KeyBindings.xml (165.5 KB) Log.txt (2.4 MB)

I mean, it’s not really a big problem to set the config and keybinds every time after a reboot, but I’m pretty sure there’s gotta be a solution to this.

Thank you in advance.

1 post - 1 participant

Read full topic

Categories: Forum

New Tracker Module

Renoise Forum - December 18, 2020 - 20:07

Hi Everybody,

Second track in the deviceTest series, trying to learn about using device based instruments.
Just having some fun with TCO’s ‘Tracker Controlled Oscillators’ while learning Renoise.
Would appreciate any tips, I’m a Renoise noob and expect im making some mistakes.

Jek_deviceTest_02.xrns (417.3 KB)

Hope you all have a nice weekend, happy holidays!

1 post - 1 participant

Read full topic

Categories: Forum

Doubled Track/Channel and Kontakt/VST Question

Renoise Forum - December 18, 2020 - 14:27

Hello together!

I have a Track that Playing on a Kontakt Sampler Plugin. All Fine. But if i copy/paste his notes on an other Empty Track (which have a different Channel naturally) the originalchannel stops playing. The FFT Track-Window Oscilloscope shows 0-line and Channel Audio sounds running out (playing last Note till stop) and only Target Channel is playing. If if mute Copied Track via Trackwindow click then the Sound starts playing in original Track back with the next note comming in.

I have Checked Kontakt Sampler and there i have 80 Voices. My original Track needs 24 Voices like Kontakt shows. So why the Doubled Track can not be played together with the original Track. Voices are more than enouph avaiable? I think maybe a Midi/Vst Interface Problem?

1 post - 1 participant

Read full topic

Categories: Forum

Pattern Navigation in Automation Tab

Renoise Forum - December 17, 2020 - 20:54

When keyboard focused in the automation tab, I can’t seem to navigate through the patterns in my song using the keyboard (for example, if I’m focused on pattern 10, my cursor line will only go to the beginning and end of pattern 10, not to pattern 9 or 11).

Is there a way to do this that I am unaware of? If not, would it be possible to enable pattern navigation throughout the entire song using the keyboard in the automation panel?

1 post - 1 participant

Read full topic

Categories: Forum

Change instrument for all patterns in a track

Renoise Forum - December 17, 2020 - 18:32

Often I’ll duplicate a track (incl. patterns), then change the instrument in the new track so I can quickly double one instrument with another complementary sound.

I right click to select Track>select, set the src. instrument and dest. instrument in the advanced pattern editor, and press swap.

When I do this, it only applies the change to the currently selected pattern, not the whole track (even though, again, the whole track is selected).

Is this a bug or do I have an incomplete understanding of what “selecting a track” means? Educate me please.

BTW doubling a track with a different instrument is a pretty common activity that could stand to be simpler in Renoise. Maybe a right click option to Track>swap instrument would be a nice addition to core Renoise? What do you think?

1 post - 1 participant

Read full topic

Categories: Forum

Problem with .transport.playing & .transport:start()

Renoise Forum - December 17, 2020 - 12:42
Documentation: Renoise.Song.API.lua

– Playing.
renoise.song().transport.playing, _observable
-> [boolean]

renoise.Transport.PLAYMODE_RESTART_PATTERN
renoise.Transport.PLAYMODE_CONTINUE_PATTERN
– Mode: enum = PLAYMODE
renoise.song().transport:start(mode)
– start playing the currently edited pattern at the given line offset
renoise.song().transport:start_at(line)
– start playing a the given renoise.SongPos (sequence pos and line)
renoise.song().transport:start_at(song_pos)

– stop playing. when already stopped this just stops all playing notes.
renoise.song().transport:stop()

The function to solve it:

For some reason that I can’t understand, using .transport:start() doesn’t always work (or something else related fails). But it does work if the function runs with a slight delay. Here is a solution that I have written.

--play/stop local ASC_PLAY_MODE=1 local function asc_play_delay() if not renoise.song().transport.playing then renoise.song().transport:start(ASC_PLAY_MODE) else renoise.song().transport:stop() end if (rnt:has_timer(asc_play_delay)) then rnt:remove_timer(asc_play_delay) end end function asc_play_stop(mode) --print("play",renoise.song().transport.playing) if (not rnt:has_timer(asc_play_delay)) then ASC_PLAY_MODE=mode rnt:add_timer(asc_play_delay,10) end end

Supposedly, to use .transport: start () the boolean .transport.playing needs to be checked beforehand to be able to control the play and stop from a single button in the viewbuilder, or an associated physical key.

Apparently I have had the same problem in several of my tools.

The function that returns problems

For example, this function return problems:

function asc_play_stop(mode) --print("play",renoise.song().transport.playing) if not renoise.song().transport.playing then renoise.song().transport:start(mode) else renoise.song().transport:stop() end end

Interestingly, I have figured out the solution using this function and activating the line:

  • print(“play”,renoise.song().transport.playing)

This line within the function generates a small delay. Thanks to him, the function will work correctly. Otherwise it will occasionally fail (for example, when inserting notes after stopping playback from the tool.).

1 post - 1 participant

Read full topic

Categories: Forum

Inline note off (Kxx)

Renoise Forum - December 17, 2020 - 03:47

Hi,
is there a possibility to implement note off from the effect command?
The reason:
i want to have inline note off.
i just realized that milkytracker has this Kxx command that is very neat.
For example, you can have quick stabs recorded correctly, even if you use mediocre speed/LPB values.
I am aware of 0Cxy command, but it doesn’t get recorded for example - like Kxx does in milkytracker, which is awesome!

1 post - 1 participant

Read full topic

Categories: Forum

Novation Circuit-Mininova users here?

Renoise Forum - December 16, 2020 - 22:57

I am really thinking of a more dawless approach in music making not that i am giving up the pc workflow but you know some time you want to get away from it.I am thinking about the Circuit seems like a very handy Groove-box also the MIninova sounds good for me.I think also combining the Circuit and the Mininova with a looper like the Boss Rc-202.Tell me your thoughts on this.

1 post - 1 participant

Read full topic

Categories: Forum

New to Renoise - from Protracker I come

Renoise Forum - December 16, 2020 - 20:43

Hey folks, I’m doing some tunes in Renoise and really enjoying the DAW.

I’ve released 3 new tracks so far that are strictly created in Renoise.

Please have a listen and let me know what you think.

Thanks!

Aberrant Harmonics Aberrant Harmonics

I compose music that isn't really modeled around any specific genre or label. That said, I have numerous influences that span a broad spectrum of music types. Generally the music will take on a life of its own. I started with an Amiga and a...

YouTube Aberrant Harmonics

I compose music that isn't really modeled around any specific genre or label. That said, I have numerous influences that span a broad spectrum of music types. Generally the music will take on a life of its own. ((The Real Skyfusion - Amiga...

1 post - 1 participant

Read full topic

Categories: Forum

Problems with some VST

Renoise Forum - December 16, 2020 - 16:33

Hello,
I tried the new VST from Tal Software Jupiter-8 Emu and in Renoise 3.2.4 it is unusable in sandbox mode. cpu at max in 10 seconds. no information in the log. The same is done by Odin2 version 2.2.4 compiled from github for vst2. These are my 2 only VSTs that do not run in sandbox mode. Can anyone try?
renoise in manjaro linux

I hope vst3 versions in 3.3 will run

1 post - 1 participant

Read full topic

Categories: Forum

Bug; Rendering of shortcuts on Firefox

Renoise Forum - December 15, 2020 - 20:20

When I click on “print” on preferences to get to view the keyboard shortcuts on Firefox (my default browser), the shortcut themselves render all on the same line, with no sections, etc.

With Internet explorer they render as a formatted html page, with sections, etc. Very human readable.

1 post - 1 participant

Read full topic

Categories: Forum

VST Instrument Samplers & issues

Renoise Forum - December 15, 2020 - 18:04

I recently installed a number of VST Instrument Samplers, I grabbed all the free ones as I wanted to test them.

However it seems that only one of them shows up in Renoise, that is the quite basic (but pretty decent) Jago Samplitz.

Does anyone know why the others fail to show up in the list?

They are all in the same directories.

Thanks in advance.

1 post - 1 participant

Read full topic

Categories: Forum

New tune from I.D. Crisis - let's go to Mars!

Renoise Forum - December 15, 2020 - 15:59

Right, we’ve had enough of this planet; we’re off to Mars to screw that up too.

Trance tune in late stages of development. Please let me know what you think - thanks!

1 post - 1 participant

Read full topic

Categories: Forum

How to play but not record an instrument while other tracks are edited?

Renoise Forum - December 15, 2020 - 11:45

I’m doing some sequencing of Renoise instruments using Puredata.

I trigger instruments via OSC or MIDI. This is synchronised via the midi clock.

I’d like to be able to jam on or otherwise edit a track in Renoise whilst this sequencer is running and not record the notes into the pattern.

Is it possible to set a particular instrument or track to not record whilst others do?

Or is this possible via some other method?

1 post - 1 participant

Read full topic

Categories: Forum

LBRY.tv (recommendations)

Renoise Forum - December 15, 2020 - 00:11

Anybody have any recommendations on who to follow on LBRY? New to the platform, have no idea where to go.

(plug your own channels, too!)

I am currently just a consumer, not a creator (on LBRY).

1 post - 1 participant

Read full topic

Categories: Forum

Novation Launchpad Mini Mk3

Renoise Forum - December 14, 2020 - 19:41

None of the matrix/step sequencer tools seem to work with Novation Lanchpad Mini Mk3.

Did anybody figure out how to configure it correctly?

1 post - 1 participant

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator
wurst