Feed aggregator

ERROR: Failed to Create the Event Communication Pipe?

Renoise Forum - January 30, 2019 - 20:19

@trueschool wrote:

Hi, I’m on Mac Mojave and recently am unable to load any VST or AU instruments. I get the error below.

I don’t understand what changed or how to fix this. Any help?

https://media.giphy.com/media/ratutTQG2Nqbm/giphy-downsized-large.gif(image larger than 4096KB)

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Bassoon Tracker - Webbased old-school Amiga music tracker

Renoise Forum - January 30, 2019 - 19:06

@taktik wrote:

Live demo: https://www.stef.be/bassoontracker

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Lua Rendering results in dB drop?

Renoise Forum - January 30, 2019 - 18:23

@Ledger wrote:

After a scripting render operation, and though I have set song to 0dB headroom; renders of an individual track seem to come out a couple of dB quieter.

Does anyone know why?

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Butterfly fx [glitch/noise]

Renoise Forum - January 30, 2019 - 13:48

@milkyheart wrote:

final track from my upcoming seventh ep. 10/4 time signature when there is one

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Heavy Asterisk, my first album

Renoise Forum - January 30, 2019 - 08:09

@milkyheart wrote:

been sitting on my hard drive since november. now available on bandcamp

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Select rows/notes to mute (pattern independent)

Renoise Forum - January 30, 2019 - 02:21

@Garf wrote:

Let’s imagine you have two of the same patterns playing but don’t want the last notes in a track to play, it could be a drum fill or a build-in, then you simply “paint over” (like the select function) to mute these parts of the track without have to make a new pattern to make these changes, so it should be independent on pattern and therefore leave other instances of the pattern untouched.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

New Tool (3.1.1) RandomRangeTrack (January 2019)

Renoise Forum - January 30, 2019 - 00:46

@Raul wrote:

RANDOMRANGETRACK, What is this?
The RandomRangeTrack tool contains a double function to randomizes the notes or values of the selected range within the selected track.

First it is necessary to select an area in the pattern editor. The first line and the last line selected must have different notes/values, which define the minimum and maximum notes/values of the range to randomize.

Use “ALT + mouse select” to the precise selection.

Access: “Pattern Editor/Selection/Randomize Notes… (or Randomize Effects…)”.

DOWNLOAD:
https://www.renoise.com/tools/random-range-track

Enjoy!

Posts: 1

Participants: 1

Read full topic

Categories: Forum

What genre of music you mainly compose with Renoise?

Renoise Forum - January 30, 2019 - 00:31

@Fabrice wrote:

Hi Renoiser!

I’ve posted a form like this, but a long long time ago, so a repost one, by curiosity :

What genre of music you mainly compose with Renoise?
Multiple choices are ok

  • Drum’n’bass / Breakbeat / Step
  • EDM
  • Dance / House
  • Techno / Trance
  • Experimental
  • Chill-out / Lounge / Healing
  • Ambient
  • Synthwave
  • Electronica
  • Chiptune
  • Pop / Rock / Electro rock
  • Hip-hop / Rap / Trap
  • Jazz / Blues / Fusion
  • Cinematic / Orchestral
  • Other

0 voters

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Soothing Bubble

Renoise Forum - January 30, 2019 - 00:00

@Fabrice wrote:

Hi!

I’am quite in a future bass / kawaii composing period and here is a short chill track I’ve tracked yesterday. With a touch of vocaloid glitches.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Improve the export options

Renoise Forum - January 29, 2019 - 20:42

@Meef_Chaloin wrote:

At the very least there should be the 4 icons to change locations but also would be great if there was a drop down for previous locations. It quickly gets very tedious moving around.

MP3 support, now the codec is free why not? I would find it very handy for exporting a mix ready to put on my mp3 player. Other formats would be good, ogg etc.

When setting a pattern selection to export, highlight the area being exported (or darken/blur the unexported areas).

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Helm VST old version gui problem

Renoise Forum - January 29, 2019 - 15:18

@ffx wrote:

Hi,

the GUI of the freeware Helm VSTi doesn’t work properly anymore in Renoise 3.1.1 64bit, I guess since macOS Sierra. The Gui won’t update anymore, it only shows the initial graphics drawing.

It works just normal in any other DAW though.

Is there any way or workaround how I could make this version work again? Any ideas?

Here is the version: Helm 0.85 64bit macos

Thanks!

P.S. I’ve seen similar problems in other VSTis, too.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Changing basenote for slicing

Renoise Forum - January 29, 2019 - 10:03

@29a wrote:

Anyone knows what would be command to change basenote from which slices keyzones will start?
it is not same as (…).sample[1].sample_mapping.base_note, after i change it when creating first slices everything is back to previous settings (c3 in my case)

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Adding, Rendering Then Deleting Pattern Crashes Renoise

Renoise Forum - January 29, 2019 - 04:12

@Ledger wrote:

The following code will crash renoise completely. The necessary components of the crash are

  • add a new pattern to the sequencer
  • render the new pattern (or a portion of it)
  • delete the pattern that was just rendered

There seems to be something going on with the :delete_sequence_at() method aswell where the sequence indexes are not properly updated so the next line of code doesn`t work in some cases. I will try to post back a snippet for that too.

--song local song = renoise.song() --final pattern index local final_pattern = #song.sequencer.pattern_sequence --add a temporary pattern local pat = song.sequencer:insert_new_pattern_at(final_pattern + 1) --insert a c-4 in new pattern ----------------------------- song:pattern(pat):track(1):line(1):note_column(1).note_string = "C-4" --render newly created pattern ------------------------------------------ --renoise.SongPos objects for render range ------------------------------------------ local start_pos = renoise.SongPos() local end_pos = renoise.SongPos() start_pos.line = 1 start_pos.sequence = final_pattern + 1 end_pos.line = 16 end_pos.sequence = final_pattern + 1 --update options table ---------------------- local options = {} options["start_pos"] = start_pos options["end_pos"] = end_pos --prompt user for path local file_path = renoise.app():prompt_for_filename_to_write("wav", "Save Wav") --render -------- song:render(options,file_path,function()end) --delete new pattern --------------------- song.sequencer:delete_sequence_at(#song.sequencer.pattern_sequence)

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Favourite breakcore artist?

Renoise Forum - January 29, 2019 - 04:08

@jljosh02 wrote:

Personally I like Rotator. I love the way he samples from literally anywhere but somehow makes it all work as a whole without feeling disjointed. And of course Mr. Snares but come on that’s way too obvious.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Necro PMs migrated from previous forum?

Renoise Forum - January 28, 2019 - 22:24

@Conner_Bw wrote:

I just noticed that all the PMs I deleted from the previous forum are back.

My replies are all gone, so maybe (hopefully?) my replies were deleted?

Just flagging because that’s probably not cool with the whole new GDPR / right to be forgotten laws going on these days.

Cheers.

Posts: 3

Participants: 1

Read full topic

Categories: Forum

Very weird song indeed

Renoise Forum - January 28, 2019 - 21:16

@BrainClaim wrote:

This track that I am posting here is somewhat a mix of dark ambient and house at the same time with some weird stuff going on in it, it was supposed to be a remake of an old dark ambient track of mine but it took different route, I will be glad for opinions, I hope you don’t despise this “song” too much

Posts: 1

Participants: 1

Read full topic

Categories: Forum

what alternatives to Audacity on Linux?

Renoise Forum - January 28, 2019 - 20:54

@faaramin wrote:

Hello friends
I’m new to the community
Thanks for this active community

I’ve used Audacity for years and never really liked it. It does the job for quick edits, but I find the UI clumsy and frustrating. Exporting multiple clips from a file is an awkward workflow.

It feels very fiddly with all the precise mousing needed to define and change selections.

Just recently I was getting annoyed because I inserted some markers into an audio file, and you would think that clicking a marker would bring the playback cursor to that point - instead it puts you into editing the text of the marker. The varispeed playback is really poor also. You slide a very fiddly horizontal slider to control the speed.

Is there any alternative that’s more keyboard driven and more intelligent? I think Renoise is the only major GUI program I’ve enjoyed using in a long time.

Posts: 2

Participants: 2

Read full topic

Categories: Forum

MIDI file tempo?

Renoise Forum - January 28, 2019 - 17:05

@Nisto7777 wrote:

I occasionally convert sequenced video game music formats, to do arrangements/remixes and whatnot. But I can’t seem to replicate the exact tempo of some songs (doing a direct side-by-side comparison completely within Renoise reveals a de-sync eventually).

When you import MIDI files into Renoise, it writes the BPM into the actual song pattern (a rounded tempo). Is this the value that’s actually used internally, or is Renoise in fact using the exact MPQN (microseconds per quarter-note) tempo specified in the MIDI files “behind the scenes”?

The tempo may be quite exact in some cases, so just lowering or raising the BPM by 1 doesn’t help.

Posts: 3

Participants: 3

Read full topic

Categories: Forum

New Tool (3.1): Channel Strip Buddy

Renoise Forum - January 28, 2019 - 16:02

@Ledger wrote:

New alpha Channel Strip Buddy:

ledger.scripts.ChannelstripBuddy_V0.5.xrnx (1.9 KB)

A tool to help when you want to use the same plug repeatedly over several tracks, as with a channel strip. However it works with any DSP you like.

  1. Load any device in renoise: EQ,Channelstrip,compressor etc.
  2. Right-Click on it for menu entry CSB - Set As Target
  3. Now use shortcut `CSB` Toggle Target Device

The shortcut has multiple functions:

  • You can open and close the target device (if it has a gui) on the current track .
  • Go to a new track with an instance already present of the ‘Target Device’ and it will select/open it, while closing all other previously open gui instances from other tracks.
  • If there is no ‘Target Device’ on the new track, one will be added and opened in the same way.

Workflow: Choose your target device. Use shortcut while navigating around to use same device in any track. Locating, loading and open/close operations are all in one shortcut.

//////////////////////////////////////////////////////////////////////
There is also a shortcut for the menu entry mentioned in step 2. above:
`CSB` Set Selected As Target Device

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Waveform area: playback 'start' line is lost in background - how do I change its color?

Renoise Forum - January 28, 2019 - 13:50

@zooterman wrote:

Hi, currently the line which you select on the waveform as the start point for playback is lost in the waveform background. Where can I find this item to change its color and make it visible?

(Redux)

-Thx

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator
wurst