Feed aggregator

Render to disk -> Browse, Not all folders shown

Renoise Forum - November 6, 2020 - 23:01

When I click browse in the Render to Disk window, and I’m in a song folder (which is inside a music tracks folder with over 100 song folders), I can’t get the browser to display all the folders in the music folder.

To get all folders showing, I will have to click the music folder, click ok, click browse again, and then all the subfolders will be shown, but if I’m already in a subfolder when I click browse, I can’t get all the other subfolders to be shown by selecting or closing/opening the music folder. It worked fine previously but I think the more song folders I added, the less it worked correctly. The dialog looks like a basic windows browsing dialog, so I wonder if it might it be a windows problem and not a Renoise problem? Anyone bumped into this one?

1 post - 1 participant

Read full topic

Categories: Forum

OSC latency in a lua script

Renoise Forum - November 6, 2020 - 18:03

Hey there ! I’m currently experimenting with bridging Renoise with Tidal Cycles. The goal is to do the sequencing with Tidal and the sound generation with Renoise.

I’ve tried two approaches: make Tidal send OSC messages that Renoise can understand out of the box, or make Renoise understand the messages Tidal sends to the regular audio backend.

The first approach works quite well, but introduces some warts in Tidal usage.

The second approach looks promising, but I have some timing issues. Basically I tried this in the TestPad:

  1. tidal sends a message to port 57120
  2. my “redirt” script listens on 57120 and receive the message
  3. the message is analysed, (instrument, track, note, velocity) are extracted, and a /renoise/trigger/note_on message is sent back to renoise on port 8000 (note triggering is not exposed to the lua API).

Now, when I do this the timing sucks. Like very very much. And I have questions:

  • Is it unavoidable?
  • Is it because the TestPad does not have some form of optimization?
  • My OSC messages have timetags, so you can send a message in advance and have the target schedule it exactly at the right moment. Does renoise do that?

Here is my proof of concept, for reference.

local OscMessage = renoise.Osc.Message local OscBundle = renoise.Osc.Bundle -- open a socket connection to the server local server, socket_error = renoise.Socket.create_server( "localhost", 57120, renoise.Socket.PROTOCOL_UDP) if (socket_error) then renoise.app():show_warning(("Failed to start the " .. "OSC server. Error: '%s'"):format(socket_error)) return end -- open a socket connection to the client local client, socket_error = renoise.Socket.create_client( "localhost", 8000, renoise.Socket.PROTOCOL_UDP) if (socket_error) then renoise.app():show_warning(("Failed to open the osc loopback with error: '%s'"):format(socket_error)) return end function linlin(input, srclo, srchi, dstlo, dsthi) -- clamp input if input < srclo then input = srclo end if input > srchi then input = srchi end -- normalize over [0,1] local norm = (input - srclo) / srchi -- transpose to [dstlo,dsthi] return dstlo + norm * (dsthi-dstlo) end -- parse a tidal bundle and return a list of messages function parseTidal(bundle) local msgs = {} for _,element in ipairs(bundle.elements) do if element.pattern == "/play2" then local msg = {} local name = "" for i,argument in ipairs(element.arguments) do if i%2 == 1 then name = argument.value else msg[name] = argument.value end end msgs[#msgs+1] = msg end end return msgs end function runTidal(msg) -- rprint(msg) -- track number local track = msg.orbit+1 -- should we trigger a sound ? if msg.s then -- select instrument by number (or the first one if something is wrong) local instr = (tonumber(msg.s) or 0) + 1 -- default octave is 4 local octave = msg.octave or 4 local note = octave * 12 + msg.note -- rescale velocity from [0,1] to [0,127] local velocity = linlin(msg.gain or 1 , 0, 1, 0, 127) client:send(OscMessage("/renoise/trigger/note_on", { {tag="i", value=instr}, {tag="i", value=track}, {tag="i", value=note}, {tag="i", value=velocity} })) end end server:run { socket_message = function(socket, data) -- decode the data to Osc local mob, osc_error = renoise.Osc.from_binary_data(data) -- show what we've got if (mob) then local msgs = parseTidal(mob) for _,msg in ipairs(msgs) do runTidal(msg) end else print(("Got invalid OSC data, or data which is not " .. "OSC data at all. Error: '%s'"):format(osc_error)) end end }

1 post - 1 participant

Read full topic

Categories: Forum

My very first Renoise module

Renoise Forum - November 6, 2020 - 17:46

Hello Trackers, this is my first Renoise module.

Wanted to learn about these new ‘devices’ I’ve never used them before,
and am very interested in the concept.

Would normally use single-cycles waveforms to create synth sounds but
decided here to try to learn the way these powerful new tools operate.

The music style is, umm experimental i guess, not my usual gabber timbre for sure.
The unmastered version is attached below, it is 139Kb.

Jek_deviceTest_01.xrns (139.5 KB)

I’d like to thank the community here for providing tips and tricks and videos
and all sorts of guidance which has helped me to learn Renoise.

1 post - 1 participant

Read full topic

Categories: Forum

EatMe - Song For Today (disco)

Renoise Forum - November 6, 2020 - 06:30

http://www.eatme.pro/music?search=song%20for%20today

EatMe - Song For Today
Music by EatMe
http://www.eatme.pro
(CC) BY-NC-ND 3.0 ( P ) 2020 Music by EatMe
http://www.eatme.pro/about for more info.

Made with Renoise 3.2.

A/F# C/A A/F# C/A
A/F# C/A D Em/C

Bass: 3114 Bass RootsyFunkAlex Ev16 110
Guitar: 1600 Gt,H-S Ac,Rh,Pop16th,Ev16,65
Guitar: 1571 GuitarEl Soul60sHigh4s Ev110
Fiddle: 1425 Fiddle,Bk,PopWaltzEv180(Outside)
Guitar solo: 3438 ElGuitar Soloist PsycPopBall
Drums: (Realdrums) RockNorthern^1-ClHt,CrRd
Trumpet: Some trumpet from Band-in-a-Box, forgot to write down which one.

Plugins used:
Acoustica Pianissimo
AAS LoungeLizard Session EP
Korg Mono/Poly
Korg M1
LennarDigital Sylenth1

Effect plugins used:
FreeVerb2
Mastering Compressor, TokyoDawnLabs Kotelnikov GE
BeyerDynamic Virtual Studio, preset 4 Big Venue
Variety Of Sound, FerricTDS, Tape Dynamics Saturation
OCS Obsessive Compulsive Saturation DSP
BassChorus_v22

1 post - 1 participant

Read full topic

Categories: Forum

Lamp, by The Noise Boy

Renoise Forum - November 5, 2020 - 17:00

1 post - 1 participant

Read full topic

Categories: Forum

Did you guys know there is a Reddit?

Renoise Forum - November 5, 2020 - 13:10

Just some chill little bass jam I was working on yesterday. How well does the Reddit work for linking videos on the forum?

reddit r/renoise - Bass Jelly

10 votes and 0 comments so far on Reddit

1 post - 1 participant

Read full topic

Categories: Forum

HeartBeatHero - Chemicals (Electronic)

Renoise Forum - November 5, 2020 - 13:00

Hey Everybody,
New track out. Please have a listen and tell me what you think.

2 posts - 2 participants

Read full topic

Categories: Forum

Break Top (XM) from 2002

Renoise Forum - November 4, 2020 - 23:24

https://archive.org/details/xm-eatme-break-top (26 MB .zip .xm)
https://eatme.bandcamp.com/track/eatme-break-top-2002-xm (26 MB .zip .xm)
alternate download:
(mirror) http://eatme.pro/download/breaktop
(mirror) https://archive.org/download/xm-eatme-break-top/XM_EatMe_-_Break_Top.zip

kick drum sampled from using https://archive.org/details/rebirthrb338
synth samples (really cool bass FM synth samples) using

Yamaha SY-77 synthesizer

1 post - 1 participant

Read full topic

Categories: Forum

Modulo sequence - pretty nice! (VCV patch)

Renoise Forum - November 4, 2020 - 19:57

I fell in love with the modulo sequencer from az.

1 post - 1 participant

Read full topic

Categories: Forum

Linking instruments instead of embedding?

Renoise Forum - November 3, 2020 - 17:48

Hello!

I’ve been using Renoise for about a year, perhaps, now, and it’s going really well - really liking it a lot.

I have a quick question - I have a VST that was converted to a XRNI pack (the VSCO2 orchestral suite), and while it sounds great, adding the UprightPiano instrument makes Renoise take longer to save the song because it has to package a large number of sample files in with the song. Is it possible to link to the samples on disk, instead, much like a VST?

That way, Renoise wouldn’t have to package the samples inside the song file and saving wouldn’t take so long (though loading wouldn’t be impacted by this, of course).

1 post - 1 participant

Read full topic

Categories: Forum

Renoise book in Japanese

Renoise Forum - November 3, 2020 - 15:26

Hi, I am not sure this title is suitable as a topic here but write it anyway.
My book of Renoise in Japanese was published on 24 Oct. 2020. This is the step by step learning course book for tracker newbies. This book is 170 pages only so it does not cover all the functions of Renoise but I hope it would be a nice starting guide for Japanese Renoise first-time users. Of course, I checked tutorials at renoise.com and Japanese Renoise manual on the web, it helped me very much and really appreciated.
The title of this book is “Let’s start music tracker with Renoise” in Japanese.

http://www.kohgakusha.co.jp/books/detail/978-4-7775-2122-7

1 post - 1 participant

Read full topic

Categories: Forum

Treasure Island Stomp

Renoise Forum - November 3, 2020 - 03:41

Tried this one without samples (other than the dude yelling). Any feedback is appreciated - still trying to figure out mixing/mastering. Hope you enjoy

1 post - 1 participant

Read full topic

Categories: Forum

Neuro... No Neuro - Sublimate - Full Album

Renoise Forum - November 2, 2020 - 21:06

A brand new album (re-worked/remixed over the past few months). All sequenced in Renoise, most sounds designed from various sample generators as well as inside Renoise. All effects during sequencing done within Renoise. No VST/AU until mastering outside of Renoise.

1 post - 1 participant

Read full topic

Categories: Forum

High contrast "sand" theme for Renoise

Renoise Forum - November 2, 2020 - 20:43

I sat down and tinkered way too long yesterday getting a theme that I’d been thinking of for a while worked out. Some folks like light themes, some folks like dark themes, me: I like me nice and “calm” themes =)

It’s a sand/dark reds UI with blues for the editable parts, and an impossible-to-miss green for focus - I stuck it online over on https://pomax.github.io/renoise-themes/sand%20(contrast) with a bunch of screenshots, but because screens are always good before you click on any theme link, here’s the main UI:

1 post - 1 participant

Read full topic

Categories: Forum

Audio Assault low prices

Renoise Forum - November 2, 2020 - 17:26

this is not an advertisement but a recommendation
Since I’m a big fan of Audio Assault products so I just want to inform you about discounts on their site.
Especially on RM-2 for mastering and Multi Transient with Head Crusher for drums.

1 post - 1 participant

Read full topic

Categories: Forum

How About This?

Renoise Forum - November 2, 2020 - 16:22

How about this idea for a Renoise Meme …

A picture of a cell door with someone holding onto the bars, peering through at you. He should be wearing a hat with a Renoise logo on it, and a T-Shirt with some vulgar, religious trolling written across it.

Puzzled about the idea?

Don’t be, I am Renoised (the real one), the one who was being maliciously trolled on here and ended-up with a ban for his sufference. Members on here were blisfully unaware of what was going in behind the scenes, and why I was so phased by the trolling. Thankfully, the troll slipped-up eventually when someone on here with FORUM ADMIN priviledges accidentally revealed themselves as the troll. Yes, you read that correctly.

Both Eduard Müller [taktik] and Kieran Foster [dblue] have long been aware that legal action is pending against them due to these incidents. The incriminating posts were captured, encrypted, and shuffled-off to multiple secure locations so that the criminal/s responsible cannot escape the consequences of their actions. The incriminating posts will be used as evidence, I am hoping along with a supporting investigation report from an online cyber-crime forensics team.

I would like to apologise to those of you who, on various occasions, were subjected to religious and other extremely verbal forms of trolling. I was NOT responsible for those posts, they were committed by someone on here with FORUM ADMIN priviledges, something which I thankfully have conclusive evidence of. There is literally no escape for the person responsible, someone with FORUM ADMIN priviledges here is getting closer and closer to a prison sentence by the day.

While I cannot say for sure the reasons behind it all, my suspicion now is that Müller was not a fan of RAS, yet saw the concepts growing popularity and simply wanted rid of me from the forum. My suspicion is that being a moderator, Foster was brought in on it, and committed the crime in collaboration with Müller. No other moderator or member of the Renoise team is suspected of involvement.

Either way, both of these people have serious legal matters on the horizon, and I suspect that unless they allow software programming to go on inside a prison, Renoise might suffer a spell of non-development if it turns out that Müller was either responsible, or part of it.

Feel free to save this post to disk for future reference, before someone on here with FORUM ADMIN priviledges deletes it to prevent you from reading it.

Have a nice day. Renoised (the real one) hopes you are all well and that life is treating you better than it is treating him.

NOTE TO ADMIN: This account was created using a disposable email address, so do not reply to it using that address, otherwise it will be lost. You are, however, free to contact me on my real email address if you wish to do so, and let’s face it, my suggestion that you find a damn good solicitor capable of miracles has not been taken-up by you so far, has it?

I wonder why … oops … of course … silly me … there’s not a solicitor in the world can get you out of this one.

Yeah, it’s really truly liberating, all of this CONCLUSIVE EVIDENCE stuff!!!

Bye bye FORUM ADMIN trolls … bye bye …

Yours Truly,
Renoised (the real one)

1 post - 1 participant

Read full topic

Categories: Forum

Cherry audio arp 2600 vst

Renoise Forum - November 1, 2020 - 23:23

In no way I am affiliated with this company , but they just released a arp 2600 vst for the ridiculous price of 25 euro .
I just created an acount to purchase it and it sounds bloody marvelous ,

1 post - 1 participant

Read full topic

Categories: Forum

Face masks are also pop filters!

Renoise Forum - November 1, 2020 - 17:51

A cool trick for those of us who record vocals, the now-ubiquitous face mask can also function as a pop filter.

I’ve never owned a “real” pop filter, so I don’t know how it compares to those, but it seems like the mask does a great job versus no mask at all.

The idea hit me when I was testing one of my masks with a lighter. If you can’t blow a flame out with your mask on, then you also won’t be sending a bunch of pops and air into a microphone either.

1 post - 1 participant

Read full topic

Categories: Forum

Disable autofocus?

Renoise Forum - November 1, 2020 - 14:17

Every time I click on he edit screen. Renoise auto-focuses on the place I clicked the cursor.


I can’t find the option to disable this. Where it be?

I just wanna click and not have everything jump around like it’s in a House of Pain song.

1 post - 1 participant

Read full topic

Categories: Forum

Halloween Spooks!

Renoise Forum - October 31, 2020 - 20:30

Made this little theme fit for an old mansion! Had a lot of fun with this one, enjoy!

Its about medium spooky, just the way I like it!

2 posts - 2 participants

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator
wurst