Forum

Indie Synth Pop created using Renoise "Hold On Tight"

Renoise Forum - August 28, 2020 - 15:22

Been really enjoying breaking away from traditional linear timeline DAWs and was inspired to create new music using Renoise.

I realise it’s probably not the kind of genre usually used for this kind of thing.

Amazing amazing software - thanks so much to the developers!

Jesse

1 post - 1 participant

Read full topic

Categories: Forum

Upgrading my beloved Thinkpad T520

Renoise Forum - August 28, 2020 - 13:45

Hi Renoisers

I’ve had a Lenovo Thinkpad T520 i7-2670M Windows 7 Pro since 2013, and adore the heck out of it, turning in a whole album made on the thing as well as the occasional remix, but I’m hitting 100% CPU in Renoise more and more often these days (mainly due to my relentless piling-on of VSTs). I’m toying with the idea of upgrading my system to a super-fast modern PC laptop (preferably one with a numeric keypad, widescreen and an SSD) and wondering how painless a process this is.

Has anyone done this? Is it a case of just copying and pasting my VSTs folders, doing a fresh install of Renoise (and Reaper) and it all magically works on the new machine? Or is it a whole world of pain? I have years and years of various plugins, including creaky old 32-bit ones from obsolete programmers, so am hoping it’s a straightforward process. Obvs Windows 7 is RIP as well, so I’m wondering does everything just copy and paste into Windows 10 happily?

And what’s a super-duper PC folks are using that calmly powers through dense Renoise tracks without breaking a sweat?

Thanks all!

1 post - 1 participant

Read full topic

Categories: Forum

Suggestion for colouring sections of sequences

Renoise Forum - August 28, 2020 - 12:21

I love the way you can break up patterns in the sequence editor with headings… What would be awesome for me would be the ability to colour-code blocks of sequences. Say you have 8 patterns in a sequence that make up a chorus - it would be awesome to change the background on this block of patterns so that you can easily see which sequence blocks are similar.

In addition, it would be nice to have the means of duplicating part of a sequence to copy/paste a second chorus. Currently I do this via the Pattern Editor - I select all the tracks and pattern rows that I want and copy paste them further down in the sequence.

1 post - 1 participant

Read full topic

Categories: Forum

Renoise and max polyphony

Renoise Forum - August 28, 2020 - 08:56

There can be up to twelve Note and eight Master FX columns in one track. It is very enough for common tracker use but if we need to use full power of hw/sw polyphony it is not enough, mainly for piano sounds. Today, if there are more notes in the same column, the previous note is stopped and the new one starts playing. It would be nice to have an option, if possible, to let the previous note play. Maybe someone has a workaround for doing that?

2 posts - 2 participants

Read full topic

Categories: Forum

SuperHypes - Master of the Universe (EP) [psytrance / electronic]

Renoise Forum - August 28, 2020 - 08:10

Hi everyone!

We have new EP out. Songs are made (composed, mixed and mastered) in Renoise.
Please, check them out.

Follow SuperHypes:
Spotify: https://open.spotify.com/artist/5XtKcZqtATwB9rIj1JBZ0T
Youtube: https://www.youtube.com/channel/UCmkZEW-sesUiEgranrGk7ig
SoundCloud: http://www.soundcloud.com/superhypes
Instagram: http://www.instagram.com/superhypes_official
Facebook: http://www.facebook.com/superhypes

1 post - 1 participant

Read full topic

Categories: Forum

Anyone know a good source of free hardware impulse responses?

Renoise Forum - August 28, 2020 - 02:23

I was exploring the convolver and found some real interesting impulse responses over at seaweed factory. Renoise convolver is pretty amazing.

seaweedfactory.blogspot.com Sample Packs

Sample packs.

Does anyone know of a nice free impulse response collection, specifically hardware impulse responses?

1 post - 1 participant

Read full topic

Categories: Forum

Bug With Un-Collapsing Group Tracks

Renoise Forum - August 27, 2020 - 23:51

1] Group a track

2] Collapse your group

3] Run snippet and watch a strange thing happen. From the snippet you would expect to end up back at the top picture, but Group 3 has become like a normal sequencer track in appearance. Clicking the triangle on group 3 does fix things again though.

testpad snippet

--song local song = renoise.song() --loop backwards through tracks for track = #song.tracks,1,-1 do song:track(track).collapsed = false end

1 post - 1 participant

Read full topic

Categories: Forum

Stream on PC - no sound

Renoise Forum - August 27, 2020 - 23:14

I’m trying to stream Renoise on Windows to Twitch using OBS or SLOBS. The problem I have is that there is no sound coming out to OBS (or slobs) at all.

I used to use Voxengo Recorder to create an audio route to my soundcard and managed to get sound into OBS that way. But now that one either creates a single echo or the sound stutter like crazy while playing. I’ve tried different all different kind of setting, but nothing sounds ok.

Is there another way to get audio to OBS from Renoise? Any plugin suggestions?

1 post - 1 participant

Read full topic

Categories: Forum

Master Track Automation GUI Doesn't Update Properly

Renoise Forum - August 27, 2020 - 19:38

The BPM, LPB and TPL automations in the Master track only update once per line and so do not show sub-lines in the GUI. But the GUI only correctly updates between this and the regular version when switching either to or from an active automation.

1 post - 1 participant

Read full topic

Categories: Forum

Strange behaviour with long sysex messages

Renoise Forum - August 27, 2020 - 00:00

Hello all. I’m getting some weird behaviour with sysex callbacks on long sysex messages. I wanted to code up a way to detect a Push by getting the standard MIDI sysex id request reply, then parsing it to check it matches a pattern.

The problem i am running into is that a message longer than 24 bytes seems to get split in two and the callback fires twice, with the first 24 bytes then the remainder (11 more bytes in the case of Push 1 which sends a 35 byte id reply).

The really annoying thing about Push is that it has two MIDI ports, but when you send an id request to either one, both respond to it! Madness. Anyway, i have it working ok, not perfectly, but it detects that Push has responded. I’m just capturing the 24 byte table and parsing that, but i would love to know whether i’m doing anything wrong.

Code is q ugly, but i just pulled out the function as it was when i discovered what was going on. I have rewritten it now to be a bit nicer.

function Push:findDeviceBySysex() local id, result, t_input, t_output = {}, {}, {} for i, device in ipairs(renoise.Midi.available_input_devices()) do t_input[i] = renoise.Midi.create_input_device(device, nil, function (reply) id[device] = reply print(t_input[i].name, id, os.clock()) rprint(id[i]) -- Close the port after callback gets fired so lose the last 11 bytes. -- If the close() is commented out, then the reply is set to the last message response only (remaining 11 bytes) as callback is fired twice. t_input[i]:close() end ) end for _, device in ipairs(renoise.Midi.available_output_devices()) do t_output = renoise.Midi.create_output_device(device) t_output:send(Midi.sysex.id_request) t_output:close() end print("hello", id) rprint(id) -- parse reply and set stuff here, blah blah blah, etc. nothing to do with the MIDI part. end

I’m thinking i could just find a way to join the two tables. But maybe there is an answer? I started printing the clock time to see if it was anything to do with sending and receiving MIDI too fast, but it seems it gets buffered so that was not the problem. Thankfully, as i had plans to start using coroutines and all sorts of nonsense to sleep the call to close until the message was definitely sent…!

Edit: still on V3.2.1 as i have an old Mac running osx10.11.6.

1 post - 1 participant

Read full topic

Categories: Forum

Papa Düm Tek songs Hungary

Renoise Forum - August 25, 2020 - 14:13

I only started using renoise about 4 months ago, was mostly hardware before that under this artist name. Here are a few of my recent Renoise tunes. Hope you enjoy


4 posts - 3 participants

Read full topic

Categories: Forum

Problem when using Valhalla Supermassive VST - sudden cutout

Renoise Forum - August 25, 2020 - 11:55

I have recently started using the plugin Valhalla Supermassive with Renoise and have noticed a very strange issue. I know it’s 3rd party software, but I don’t experience the issue when using the VST with other DAWs (tested in Cakewalk) and was wondering if anyone might be able to shed some light on what’s going on. I have Googled the issue and am coming up empty.

Description: reverb will suddenly cut out after a few seconds if no sample is playing on that track. The amount of time this takes is seemingly random (different results when playing the same pattern a few times). Then, if I set the volume on the track to -inf and trigger another sample, the reverb suddenly comes back in. It happens both when I playback in Renoise and in rendered wav files.

This is quite difficult to explain and reproduce (even for me, as I said it’s seemingly random) and so I have uploaded an example file where this happens here: https://www.dropbox.com/s/tbird0t5k04q7a2/valhalla-supermassive-test.xrns?dl=1

In pattern 1 a sample plays and Supermassive builds up some reverb. In pattern 2, the sample has ended and the reverb slowly dies down until at some point it suddenly cuts out. This happens for me anywhere between line 20 and 35. In pattern 3, the volume of the track is set to -inf and a sample is triggered, and the reverb suddenly reappears.

If anyone has any idea what might be happening, or if anyone wants to download that file and confirm whether or not the issue happens for them, I’d greatly appreciate it.

1 post - 1 participant

Read full topic

Categories: Forum

Mixtape - Loreal stunner

Renoise Forum - August 25, 2020 - 04:10

https://mega.nz/file/ubxVVSSS#i6WnC1oaikLIu8JISe-FINyQUTU37FnedkgjvoQm6VY

three hard days work. coca cola aided music.

1 post - 1 participant

Read full topic

Categories: Forum

Instrument default phrase as extra option

Renoise Forum - August 24, 2020 - 22:09

Renoise use the currently selected phrase as default phrase. Sometimes, when i editing my phrases, i forget to set it back to my preferred default one. Would be better, when this is an extra option, so i dont need set it back.

1 post - 1 participant

Read full topic

Categories: Forum

Additional option For Failed ASIO Drivers

Renoise Forum - August 24, 2020 - 21:50

Not sure if others run into this a lot but my ASIO Drivers do run into probs regularly - not just in renoise it’s an Audient problem.

Often I just need to Reinitialize, so the reqest is either to add a reinitilize button to this dialog, or a ‘Go To Prefs’ button that will open prefs on the audio tab.

Would ease the frustration a bit when this happens.

1 post - 1 participant

Read full topic

Categories: Forum

New Tool (3.2.2): Start Recording On Note Input v1.0.001 (August 2020)

Renoise Forum - August 24, 2020 - 20:55
Start Recording On Note Input v1.0.001

Start Recording On Note Input or STN starts recording notes from the first input note with follow the player’s position in the pattern. It will start recording from the selected line.

  • Go to “Renoise/Options:~ Start Recording On Note Input” to enable/disable it.

Download

https://www.renoise.com/tools/start-recording-on-note-input

Related link:

https://forum.renoise.com/t/some-suggestions-for-recording-notes/61489?u=raul

Thanks to @helltrack for suggesting this feature…

Enjoy it!

1 post - 1 participant

Read full topic

Categories: Forum

Auto Loop Zone FX Command

Renoise Forum - August 24, 2020 - 14:26

I constantly use the CTRL+P command to select, copy and paste a short sequence.

Would be ace if this workflow could be automated into a FX Command that automatically copies and updates everything that is on the lines above it to the lines below it.

1 post - 1 participant

Read full topic

Categories: Forum

Sorry I am The Trammps but how to copy my tapes I am not permitted

Renoise Forum - August 24, 2020 - 00:58

The Jacksons - I’ll Be There 1983 seek that up on YouTube,

https://www.youtube.com/watch?v=L_NfBJSW7Zc

This came from the Jacksons that used software I wrote as The Trammps with a true friend at that time with the name of Elvis Presley that was called Tempo Music source code on the MIDI discs 19789. We wrote its first version in 15 months 24 7 codeing on computers as first stable version. This program could include the complete program itself and the samples and the song on one disc and the computer and to tape and back. You could copy everything you liked of it and spread it. We then released its test version to have all songs made with it as Elvis Presley and also pretending that we don’t make software like that. The program to have this incredibly complicated sampled music is nowerdays completed as PG Music Band In A Box and it costs some but it is worth it. O. I made all music by that time with computer software smth Tempo Music that I wrote I have a license of the program of this 2020 time too it was somewhere on the MIDI disc 19789 tempo music source or smth made all music for The Trammps my then project that already had too many releases - Barry White - Biky’s Dance The Night Away (Part 16) together with friends like Barry White and Rae Nelson on bass guitar sample - The Motions that copied and erased the tape i copied from the computer - all made by Four Seasons creator EatMe.

All the copyright shit robot tells these artists and me I can’t upload it because idk they can’t find me to permit them well it’s free to copy fak how am I going to get this uploaded again for download I don’t have the tapes anymore

I also want to help people to copy their tapes if needed.

It said push enter to install to disc and could later to tape but there was also a part that could upgrade it into newer i386 computer systems things.

1 post - 1 participant

Read full topic

Categories: Forum

Some Suggestions for Recording Notes

Renoise Forum - August 23, 2020 - 21:29

Two features that I’d like to see in Renoise

1.) Start Recording on Note Input (stolen from FL Studio ;))

FL has this feature where playback/recording is only starting when you start entering a midi note. I have found this to be a really fun and useful feature.

2.) Non overdub record mode

recording mode where the playhead erases all the notes it passes and doesn’t overdub notes when recording in a looped pattern.

anyone else got some good ideas?

1 post - 1 participant

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator - Forum
wurst