Quantcast
Channel: Renoise Forum
Viewing all 7805 articles
Browse latest View live

New Tool (3.0): Akaizer


Any news on the "new project" ?

tiny nuisance with column selection

$
0
0

I like to use the flexible mark shortcuts for selection. In a track's fx column, I'd press the shortcut 2 times (y,a,q,t) in order to select the upper/lower/block/whole fx-column. This doesn't work in the individual fx columns for notes though. There it's just either half of the column or the whole column with notes selected. 

 

Also if you could readd shortcuts for the old ctrl-b, ctrl-e behaviour that would be awesome.

Build a perfect Virtual Piano using buttons only

$
0
0

There is a surprisingly simple and repetitive way to build a perfect virtual piano just by using buttons with Viewbuilder. I share it because I have not seen any tool that uses this method.

 

Main elements:

  1. button (id, height, width, color, bitmap or text, pressed & released or notifier, tooltip... )
  2. row
  3. row with negative spacing
  4. space with width
    vb:row { --row(0)
      margin = 5, -- general margin for all piano.
      spacing = -2, -- space between octaves ( 12 keys ! space ! 12 keys... )
      
      --- --- OCTAVE 0 (0-11)
      vb:row { spacing = -131, --row(1)
        vb:row { spacing = -3, --row(2)
          vb:button { id = "KEY_0",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_2",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_4",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_5",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_7",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_9",  height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_11", height = 66, width = 23, color = { 255,255,255 } },
        },
        vb:row { --row(3)
          vb:button { id = "KEY_1",  height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 8 }, --vb:row { width = 8 },
          vb:button { id = "KEY_3",  height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 22 },
          vb:button { id = "KEY_6",  height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_8",  height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_10", height = 40, width = 15, color = { 001,000,000 } },
        }
      },
      --- --- OCTAVE 1 (12-23)
      vb:row { spacing = -131, --row(1)
        vb:row { spacing = -3, --row(2)
          vb:button { id = "KEY_12", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_14", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_16", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_17", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_19", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_21", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_23", height = 66, width = 23, color = { 255,255,255 } },
        },
        vb:row { --row(3)
          vb:button { id = "KEY_13", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 8 },
          vb:button { id = "KEY_15", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 22 },
          vb:button { id = "KEY_18", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_20", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_22", height = 40, width = 15, color = { 001,000,000 } },
        }
      },
      --- --- OCTAVE 2 (24-35)
      vb:row { spacing = -131,
        vb:row { spacing = -3,
          vb:button { id = "KEY_24", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_26", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_28", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_29", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_31", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_33", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_35", height = 66, width = 23, color = { 255,255,255 } },
        },
        vb:row {
          vb:button { id = "KEY_25", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 8 },
          vb:button { id = "KEY_27", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 22 },
          vb:button { id = "KEY_30", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_32", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_34", height = 40, width = 15, color = { 001,000,000 } },
        }
      },
      --- --- OCTAVE 3 (36-47)
      vb:row { spacing = -131,
        vb:row { spacing = -3,
          vb:button { id = "KEY_36", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_38", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_40", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_41", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_43", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_45", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_47", height = 66, width = 23, color = { 255,255,255 } },
        },
        vb:row {
          vb:button { id = "KEY_37", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 8 },
          vb:button { id = "KEY_39", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 22 },
          vb:button { id = "KEY_42", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_44", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_46", height = 40, width = 15, color = { 001,000,000 } },
        }
      },
      --- --- OCTAVE 4 (48-59)
      vb:row { spacing = -131,
        vb:row { spacing = -3,
          vb:button { id = "KEY_48", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_50", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_52", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_53", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_55", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_57", height = 66, width = 23, color = { 255,255,255 } },
          vb:button { id = "KEY_59", height = 66, width = 23, color = { 255,255,255 } },
        },
        vb:row {
          vb:button { id = "KEY_49", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 8 },
          vb:button { id = "KEY_51", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 22 },
          vb:button { id = "KEY_54", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_56", height = 40, width = 15, color = { 001,000,000 } },
          vb:space { width = 7 },
          vb:button { id = "KEY_58", height = 40, width = 15, color = { 001,000,000 } },
        }
      },
    }

The basic steps to create a octave:

  1. Create a general row(1) for each octave. Then insert two rows, row (2) and row (3).
  2. Group the 7 white buttons in row(2) (the buttons must be sorted in scale: C-, D-, E-, F-, G-, A-, B-. color = { 255,255,255 } for pure white.
  3. Group the 5 black buttons in other row(3) (the buttons must be sorted in scale: C#, D#, F#, G#, A# ) . color = { 0,0,0 } according with your theme of Renoise or color = { 1,0,0 } for pure black.
  4. Without using spacing, the white and black buttons are placed on the same line. Use negative spacing to overlap the row (3) above the row (2), for example: vb:row { spacing = -131,  . Then, all black overlap with white.
  5. Finally, inside the row(3), uses rows with a given width to separate the black buttons correctly, for example: vb:space { width = 7 }

Repeat steps to create up to 10 octaves. You can group all octaves in another row and use a concrete spacing among them.

 

The crude result (with 5 octaves. The black keys use color = { 0,0,0 } to respect the theme):

virtual_piano_ulneiz.gif
 
With the properties of each button (pressed, released, notifier), key_handler, midi and mouse is possible to control this virtual piano and build very interesting tools, with a more pro look.
 
Notes 1:
  1. It is possible to modify the size of the buttons and accompanying the spacing.
  2. Is possible to modify the colors of the buttons grouped in octaves or groups of octaves.
  3. You can add the right and left scroll buttons to display only the desired octaves (a tool that takes up little space, using only the negative or positive spacing.
  4. Use "spacing" inside the "row" (horizontal scroll) and "spacing" inside the "column" (vertical scroll).
  5. You can build a virtual piano vertically, using "column" and "spacing", with the same results...

Notes 2:

  1. Another trick is to call the id of each button as well: id = "KEY_0", id = "KEY_1"id = "KEY_2"... id = "KEY_10", id = "KEY_11", id = "KEY_12"... In this way, we can call a group of buttons as well:
function change_color_octave_0()
  for k = 0, 11 do
    vb.views["KEY_"..k..""].color = {x70,x00,x00} --red
  end
end

function change_color_octave_1()
  for k = 12, 23 do
    vb.views["KEY_"..k..""].color = {x00,x70,x00} --green
  end
end 

Using this trick you can modify properties of each button in a group. For example, offer the user 2 or 3 different virtual piano sizes, adding an id to each row to resize it as needed. In my GT16-Colors tool, I was able to add a button that returns the last note pressed, to remember it. Pressing this button points the corresponding key back on the piano. With a little creativity, you can build wonderful things...

 

Enjoy and build your tools!!!

 

More than two custom VST directories

$
0
0

Still confused? Let us know, and we'll try to help!

it's really great to see a 64-bit version that also features 64-bit rewire

one immediate confusion/problem i have is this:

after installing 2.8b1, from the Preferences i can scan two of the (x86) VST plugins folders i have

however, the x64 plugins are located in other folders than the 32-bit ones

but renoise only allows for scanning two folders

so how can i get it to scan both the x86 and x64 plugins when they're located in more than two different folders?

is reinstalling/moving all 32-bit vst's to one single folder the only solution?

Turn renoise into the best synth

Landestyle coming soon

$
0
0

Hello,

 

This is my last compo, cool, before holidays : )

 

VST : Synthmaster One and Spire. Voice and Sax, samples from looperman.

 

Enjoy !

 

New Tool (3.1) Send Mixer (Feb 2017)

$
0
0

New tool: 

 

---------------------------------

 

Gives you a mixer to control all your send levels:

 

1) Choose target send track from switcher on top left.

2) Move sliders and send devices are automatically added if not already present

3) Navigate tracks by pressing the blank square buttons (left of `S` buttons). They light up green when a track is selected

4) solo tracks with the `S` buttons

 

Also has a MON button (toggle) which lets you hear the audio from the sends only.  In renoise if you solo a send you still hear the output from the tracks pointing to it.  The MONitor function adds Silent Gainers (-INFdB) to each track so that all you hear is the audio flowing through the send tracks.  While Autosolo is checked and MON enabled,  simply click each individual send track button to hear it`s true solo output.  To hear all sends together, disable Autosolo.

 

Note: Autosolo option only becomes visible when MON is engaged.

 

If you get in a muddle with solo/ mon states just press the RESET button and all goes back to default.  You can rename tracks in the textfields and a special renaming textfield is provided to rename the target send track.

 

Bug reports and feedback as always welcome though I`m not looking to start making this one much more complicated.  It is meant to be used in combination with the renoise GUI as an aid to it.

 

 

Send Mixer Mute.PNG

 

 

Menu: Tools:Ledger`s Scripts:Send Mixer

 

Shortcut: Global:Tools: Send Mixer

 

 

Attached File  ledger.scripts.SendMixer_V0.62.xrnx   11.25KB   4 downloads

 

 

------------------

changelog

-0.62

-"M. Src." button deactivated when no send present

v0.61

- new "M. Src."  (Mute Source) toggle added to control [Mute Source] [Keep Source] in each send device

 

Spoiler

Make all samples 8 bit-tool

$
0
0

Hello! I am pseudo coding my first tool which makes all your samples 8 bit. Basically, if you want it to sound lo-fi or maybe sound more like a very old sampler, it could be one way to do it. Anyways, here is m y code. 

local function make_8bitize()
--for renoise.song():instrument(index) do
--renoise.song().instruments[].samples[].sample_buffer.bit_depth
--  -> [read-only, 8]

It is my first one, and I am new to Lua, but I have some programming experience. I need the program to iterate through all the instrument slots and see if there is a sample, if there is, change it to 8 bit. 

Can I have some advice on how to go about doing this? Is there a keyword for the maximum amount of instruments in the project?

for i = 0 and i < renoise.song():instrumet(maximum) do ?

metal in renoise

$
0
0

i love to crossbreed metal with breakcore and such sick ass musick

 

do you know some good guitar metal renoise instrument ?

i don't want to use vsti

Freaky, laid back dnb (no liquid)

$
0
0

It's too repetitive, but its okay IMHO. (work in progress)

 

Vaeprism...

$
0
0

Been a stranger in these parts for sometime, lots happening. Anyways, I finally finished another track....

 

Freebies (Plugins, VSTs, Samples)

$
0
0

Thanks to Dblue for the link to the webcache! A quick source view copy & paste, Freebies restored.

 

@Midierror I was unable to post your soundcloud shares, can you repost them and I will add.

The cached version of the original thread can be found here:

http://webcache.googleusercontent.com/search?q=cache:rWiVyDyengYJ:forum.renoise.com/index.php/topic/46723-freebies/

 

 

Freebies:

 

Mode Audio 500MB of free sounds (this requires you to subscribe to their newsletter):

https://modeaudio.com/newsletter

 

U-he Protoverb (free plug in - has also been posted in status updates and thread here: http://forum.renoise...n/?hl=protoverb):

http://www.u-he.com/cms/179-protoverb

 

Wire Grind Impulse Response Sample Library:

http://www.wiregrind...esponse-library

 

Orange free sounds funk guitar loops and riffs pack (free sample pack - website also contains more freebies):

http://www.orangefre...ar-loops-riffs/

 

Dotec Audio (Free plugins: DeePanpot and DeeGain):

http://dotec-audio.com/

 

Converse Rubber tracks sample library (Royalty free, free sample pack library - have to download files individually and requires you to sign up to the site):

https://www.conversesamplelibrary.com/

 

Aestesis Eliktronika VJ (free VJ software, have not tried this yet though):

http://aestesis.net/...ual-performers/

 

Dubsounds vintage drum samples (various samples):

http://www.dubsounds.com/dr55.htm

http://www.dubsounds.com/VL1.htm

http://www.dubsounds.com/eh-r12.htm

http://www.dubsounds.com/dmx.htm

http://www.dubsounds.com/sm-8.htm

http://www.dubsounds.com/sr-88.htm

 

A sound Effect 500 sfx samples (must enter name and email to get download link):

http://www.asoundeff...-sound-effects/

 

Prime loops 500mb sample pack (Must create an account to get download link):

https://primeloops.c...account/create/

 

Legowelt sample kits:

ROLAND JV 2080: http://www.legowelt....80sampleKit.zip

YAMAHA DX-FILES: http://www.pacificmi..._SamplePack.zip

YAMAHA SY-35: http://www.pacificmi...35sampleKit.zip

KORG ELECTRIBE ER-1: http://www.pacificmi...GER1Samples.zip

YAMAHA DX200 FM SYNTHESIZER: http://www.pacificmi...sSAMPLEpack.zip

ROLAND JD 800: http://www.pacificmi..._SampleKitz.zip

KORG MONO/POLY: http://www.pacificmi...ONOPOLY 101.zip

ROLAND JUNO 106: http://ww.pacificmic...Samples 102.zip

CASIO MT70 drums: http://www.xs4all.nl...umsamplezzz.zip

BOSS DR660 Drums: http://www.xs4all.nl...Drumsamples.zip

 

Ryotoms Free vst/au (full details:http://www.alanvista.com/royotoms/ ):

Win 32 vst: http://www.vst4free....32=Royotoms.zip

Win 64 vst: http://www.vst4free....otoms_Win64.zip

Mac OSX Vst: http://www.vst4free....toms_MacVST.zip

Mac Au: http://www.vst4free....otoms_MacAU.zip

 

Producers choice sample pack (must sign up for newsletter):

https://producerscho...ample-packs-vb/

 

Resonance Sound Free Sample packs (1.49Gb Via their facebook page):

https://www.facebook...90322544333196/

 

Waveshaper free drum sample packs (samples vary in quality, some mono and lower bit rate than full paid versions):

http://waveshaper.or...RAIN [Free].zip

http://waveshaper.or...OL01 [FREE].zip

http://waveshaper.or...01 Free Kit.zip

http://waveshaper.or...MkII [FREE].zip

http://waveshaper.or... [Free kit].zip

http://waveshaper.or...- Free Kits.zip

http://waveshaper.or...rumkit FREE.zip

http://waveshaper.or... [Free Kit].zip

http://waveshaper.or...ix FREE kit.zip

http://waveshaper.or...sample pack.zip

http://waveshaper.or... [Free Kit].zip

http://waveshaper.or...r [FM] FREE.zip

http://waveshaper.or... [Free Kit].zip

http://waveshaper.or...MS20 [free].zip

http://waveshaper.or...oKit [free].zip

http://waveshaper.or...ee Kit MkII.zip

http://waveshaper.or... [Free Kit].zip

https://www.copy.com...[free pack].zip

http://waveshaper.or...[Free Pack].zip

https://copy.com/bT3....zip?download=1

http://waveshaper.or... Kits 16-44.zip

 

Visit Waveshaper for full versions or you wish to donate: http://waveshaper.org/index.html

 

Dj Puzzle samples:

http://www.djpuzzle....uzzle_Promo.zip

http://www.djpuzzle....ples/Sirens.zip

http://www.peacelove...d_Free_Pack.zip

http://www.djpuzzle....h_Loops_WAV.zip

http://www.djpuzzle....ri-On_Loops.zip

http://www.djpuzzle...._Hits_Stabs.zip

http://www.djpuzzle...._Tools_FREE.zip

http://www.djpuzzle....October2012.zip

http://www.djpuzzle...._Sneak_Peak.zip

http://www.djpuzzle....x_Free_Pack.zip

http://www.djpuzzle....ubScratches.zip

http://www.djpuzzle....ackage_FREE.zip

http://bit.ly/12xhSjI

http://bit.ly/15zXot0

http://bit.ly/1bbylU8

http://edmloops.com/...ps-and-samples/

http://www.bit.ly/1QPN1Za

 

R-Loops Sample Packs:

http://r-loops.com/f...r-loops.com.zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...llex-Growls.zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...r-loops.com.zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...r-loops.com.zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...ches-[FREE].zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...rloops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

http://r-loops.com/f...-loops.com).zip

 

Various Free Fx (Care of PluginBoutique - Must sign up for an account first to download) :

http://www.pluginbou...lator?free=true

http://www.pluginbou...usher?free=true

http://www.pluginbou...Strip?free=true

http://www.pluginbou...horus?free=true

http://www.pluginbou...essor?free=true

http://www.pluginbou...Delay?free=true

http://www.pluginbou...rtion?free=true

http://www.pluginbou...ancer?free=true

http://www.pluginbou...16-EQ?free=true

http://www.pluginbou...citer?free=true

http://www.pluginbou...Packs?free=true

http://www.pluginbou...ilter?free=true

http://www.pluginbou...anger?free=true

http://www.pluginbou...undle?free=true

http://www.pluginbou...-Gate?free=true

http://www.pluginbou...ar-FX?free=true

http://www.pluginbou...miter?free=true

http://www.pluginbou...ring-?free=true

http://www.pluginbou...I-Arp?free=true

http://www.pluginbou...lator?free=true

http://www.pluginbou...fect-?free=true

http://www.pluginbou...haser?free=true

http://www.pluginbou...miser?free=true

http://www.pluginbou...everb?free=true

http://www.pluginbou...ation?free=true

http://www.pluginbou...encer?free=true

http://www.pluginbou...lysis?free=true

http://www.pluginbou...Width?free=true

http://www.pluginbou...haper?free=true

http://www.pluginbou...coder?free=true

 

Instruments: (Also Pluginboutique):

http://www.pluginbou...chine?free=true

http://www.pluginbou...Packs?free=true

http://www.pluginbou...rator?free=true

http://www.pluginbou...ument?free=true

http://www.pluginbou...emble?free=true

http://www.pluginbou...mpler?free=true

http://www.pluginbou...esets?free=true

http://www.pluginbou...Synth?free=true

http://www.pluginbou...ument?free=true

 

Studio Tools (PluginBoutique):

http://www.pluginbou...ditor?free=true

http://www.pluginbou...essor?free=true

http://www.pluginbou...-Gain?free=true

http://www.pluginbou...ering?free=true

http://www.pluginbou...Packs?free=true

http://www.pluginbou...ility?free=true

http://www.pluginbou...chbay?free=true

 

Sample Diggers sample packs (Must fill out form to download):

http://www.sampledig.../product/cat/15

 

Wave Alchemy Drum Tools (175 Free Drum sounds - Click link that says "Download 175 FREE drum sounds taken directly from Drum Tools 02 here!" - Website contains more free samples, though you must sign up to download):

http://www.wavealchemy.co.uk/drum-tools-02/pid165/

 

TBProAudio  sTilt (Linear phase filter plugin for Win/Mac):

http://www.tb-softwa...udio/stilt.html

 

VST4Free SH-it Bass (sampled bass sound from the Roland SH-101 synthesizer.  Plugin Win/Mac):

http://www.vst4free....it_Bass&id=2430

 

The Ensembletron String Synth (Freeware VSTi for Win - Site also contains more vst/vsti):

http://planetbotch.b...h-freeware.html

 

VSamp (Sample player for Mac now free):

http://www.vsamp.com/

 

Samplephonics handpicked freebie (Free sample pack - Site also contains more freebies - Must Sign up for account):

http://store.samplep...-picked-freebie

 

Mogo (WNP Sounds synth for Win - Must sign up for account - other freebies on also site):

http://www.wnpsounds...t/product/mogo/

 

Awesome Kicker (Free VSTi/AU Win/Mac - Website also contains other freebies):

https://perezkarjee.com/freestuffs/17

 

SampleNinja's Royalty Free Pack Volume 004 (Must sign up for account - Other free sample packs available):

http://www.samplenin...ee-pack-vol-004

 

Mildon Strummer 3.5 (Free Vst Instrument):

http://mildon.me/plugins/strummer3.5

 

Vintage drum elements (virtual drum machine vst/au for win/mac):

http://www.samplesci...m-elements.html

 

Loopmasters Loops of Xmas Past (195MB 24bit 44khz sample pack give away. Password: LoopXmasPast):

https://loopmasters....07151443/a17b2d

 

Freeware for Producers: The Ultimate Collection (MusicTech review of various freeware containing links to download):

http://www.musictech...ate-collection/

 

Carma Synth (Free 32bit Synth Vst for Windows - The "Downloads" link on their website also contains various vst/vsti and sample packs which may require you to register on their website):

http://www.noizefield.com/max-project

 

HY Delay (free Delay Vst 32/64bit - website also includes various Max for live fx):

http://hyakken.moo.j...oduct/hy-delay/

 

10 Vst Synthesizers (Best free synthesizers of 2015  by producer spot - contains reviews and links to download):

http://www.producers...eleased-in-2015

 

Squashit Multiband Distortion (free download with code provided on bpb website for Win & Mac - must fill in form with name & email address):

http://bedroomproduc...-squashit-free/

 

Thump 2 (free plug in - requires email subscription):

http://mhsecure.com/...ware/thump.html

 

FuzzPlus3 (Free distortion plug in for Win/Osx by Audio Damage):

http://www.audiodama...t.php?pid=ADF02

 

HY-Lofi (Distortion-bit quantizer + waveshaper + filter):

http://hyakken.moo.j...roduct/hy-lofi/

 

Krakli Stinger Synth (32-bit VSTi plugin for Windows):

http://bedroomproduc...ti-synthesizer/

 

Diamond Class sample pack (free 16bit 256MB pack from Rloops):

http://r-loops.com/s...amond-class/806

 

Davi Santos Plugins (Free 32/64 bit plugins for Win/Mac - DvnSfxMaker, DvnKeyMaker, DvnBitCrusher):

http://davisan.itch.io/dvn-effects

 

GTG Synths (Various synth plug ins - Win only and possibly 32bit):

http://www.gtgsynths.com/plugins.htm

 

Free loops and sample packs by Producerspot  (24bit Wav):

http://www.producers...m-samples-packs

 

Orion Sound Module (Free rompler plugin for Win/Mac):

http://www.samplesci...und-module.html

 

Sean Pandy Drums (VST/AU drum rompler plugin):

http://free.chokehol...an-pandy-drums/

 

Gk Amplification (Gallien-Krueger amplifier and speaker emulator plugin for Win/Mac):

http://shop.audified...ant=10324859783

 

Exotic by JB & CPS (Synth - 32-bit VST only):

http://www.noizefiel...ner-projects/jb

 

Izotope Vinyl (Win/Mac Must sign up for an account):

https://www.izotope....truments/vinyl/

 

Qtractor (Audio/MIDI multi-track sequencer application for Linux):

http://qtractor.sour...ctor-index.html

 

HY-Filter (Win Vst):

http://hyakken.moo.j...duct/hy-filter/

 

Devil Bass Module 2.5 (Page also contains downloads for devil reverb & vocal reverb - Win):

http://www.devilsoundz.net/products

 

NoizeDelay (32bit plugin for Win - must sign up for an account - site also contains other freebies):

http://www.noizefiel...ucts/noizedelay

 

Soundmorph samples (various sample packs - must add email address to mailing list for download):

https://www.soundmorph.com/sounds

 

Black Octopus Samples (Various free samplepacks and tasters - Must sign up to newsletter):

http://blackoctopus-...free-downloads/

 

PTEq-X (Free Vintage tube eq for Win/Mac - Site also contains other free plugins):

http://www.igniteamp.../audio-plug-ins

 

99 Sounds Massamolla (Royalty free sample pack by Shmertz):

http://99sounds.org/massamolla/

 

The control spot (Stereo speaker simulation 32 bit vst for Win - Site also contains other free downloads):

https://madbeeaudio....for-headphones/

 

Bitsonic custom reverb (32 bit vst Win -  Free version available):

http://www.bitsonic....stomreverb.html

 

HY-Phaser (Vst Win 32/64bit - Site also contains other freebies):

http://hyakken.moo.j...duct/hy-phaser/

 

Vermona DRM (Drum kits and loops sample pack -  WAV/REX):

https://sellfy.com/p/8vXm/

 

TR 707 Samples (Aiff format - can choose to also download the Abelton Drum Rack):

http://bedroomproduc...tr-707-samples/

 

Panipulator (plugin for Win 32/64bit and Mac (VST2, VST3, RTAS, AAX Native) - Must sign up for account):

http://www.bozdigita...ct/panipulator/

 

Speak and spell plug in (Vst plug in Win32/64bit):

http://www.groovezin...eaknspell80.php

 

F1 Filterbox (Win 32bit filter plugin):

http://www.razaudio....-filterbox.html

 

Tritik Krush (Bit Crusher/Clipper/Multi-mode filter Win/Mac 32/64bit VST/AU):

https://www.tritik.c...ush#toggle-id-2

 

Solcito Musica SuperTron - (Synth VSTi Win/32bit? page also contains other freeware synths & Fx):

http://solcitomusica.../virtuales.html

 

Tal (Various synths & Fx ForWin/Mac various 32/64 bit - scroll down to "Free Products" heading for links):

https://tal-software.com/Products

 

Alpha Ray 4Free (Synth Win 32bit - Option to pay 5,95 € to Unlock extra Fx - Site also contains other freeware):

http://www.tubeohm.c...LPHA-RAY-E.html

 

Arppe 2600va (ARP 2600 emulation 32 bit Win VSTi):

http://glenstegner.com/softsynths.html

 

Wollo Drone (32bit Win VSTi Synth - page also contains other downloads):

http://www.wollo.com/vst.htm

 

IVGI (saturation/distortion plugin Win/Mac 32/64bit - site also contains other freeware fx):

http://www.klanghelm.com/IVGI.php

 

Variety of sound (Various Plugins Win 32bit?):

https://varietyofsou....com/downloads/

 

VladG (Various plugins Win/MAc 32/64bit):

https://vladgsound.w....com/downloads/

 

A1 Audio (A1 TriggerGate & A1 StereoTool plugins. Win/mac 32/64bit):

http://www.alexhilto...x.php/downloads

 

Acon Digital Multiply (Chorus plugin Win/Mac 32/64bit):

https://acondigital....ducts/multiply/

 

Voxengo Free Vst (Various free plugins Win/Mac 32/64bit):

http://www.voxengo.c...ee-vst-plugins/

 

Bluecat Audio (Various freeware plugins Win/Mac 32/64bit - page also contains demos):

http://www.bluecatau...nload/Products/

 

Audio Assault (Various plugins Win/Mac 32/64bit):

http://www.audio-ass.../downloads.html

 

Ohm Force Frohmage (Filter plugin Win/Mac 32/64bit - Must create an account):

https://www.ohmforce...t.do?p=Frohmage

 

Melda (various plugins - Must download bundle installer - 130mb - Can choose what to install Win/Mac 32/64bit):

http://www.meldaprod...ownload/plugins

 

De La Manch intruments (Win 32 bit plug ins - site also contains free fx plugins):

https://delamanchavs...om/instruments/

 

16Gb Sound Fx Sample pack from Sonniss (Available as direct download or torrent):

http://www.sonniss.c...meaudiogdc2016/

 

HY -MBDrive (Multiband Distortion VST 32/64bit Win):

http://hyakken.moo.j...uct/hy-mbdrive/

 

Synister (Win 32/64bit Synth):

http://the-synister.github.io/

 

Inear Display (Various plugins, 32/64bit Win/Mac and some for Linux):

https://ineardisplay...plugins/legacy/

 

Sinnah (Synth plugin Mac/Win 32/64 bit):

http://nusofting.liq...h_VA_synth.html

 

BHK Sample pack (Must subscribe via email to newsletter):

http://bhksamples.com/free-samples/

 

Bob Perry gate (Gate plugin Win/Mac 32/64 bit - Must sign up for account to download):

http://www.bobperry-...bob-perry-gate/

 

Synthetik (Synth plugin Win/Mac 516MB - Must sign up for account to receive download link):

http://synthetik.tru-urban.com/

 

Winkl (Distortion plugin Win/Mac - Site also contains other free plugins):

http://tekit-audio.c.../effects/winkl/

 

Background Noise (Sample pack - 185.94 MB 41,000 HZ 16bit Wav - They ask for a link back if used):

http://www.orangefre...ise-sound-pack/

 

Transport (Provides info on measure, time, sample count etc Win/Mac 32/64 bit - Also contains other free plugins):

http://ddmf.eu/freeware/

 

Zampler Rx Sample pack (1.7 GB  contains 112 SFZ patches, 16 RX2 patches, 1,456 audio samples in WAV):

http://bedroomproduc...ampler-assault/

 

HY-ChoFla (Chorus/Flanger plugin - Win 32/64bit):

http://hyakken.moo.j...duct/hy-chofla/

 

Found Percussion (Sample pack - 46.7 Mb - Asks for credit if used commercially):

http://www.esrever.a...ercussion/yib1p

 

Minimal Chords (Sample pack - 68 x 24bit Wav loops - 6 Midi Chords-Melodies. 162Mb or 248Mb unrared):

http://samplemodern....mal-chords.html

 

Vintage Drum Elements (Virtual drum machine plugin Mac/Win 32/64 bit - Must supply email address for download):

http://www.samplesci...m-elements.html

 

Kick Drum ( Samples from 99 Sounds - 120 Kick drum in Wav/Sfz/Nki):

http://99sounds.org/kick-drum/

 

Ample P Bass Lite 2 (Win/Mac VST/AU/RTAS/AAX/Standalone - 204MB-Installer):

http://www.amplesound.net/en/index.asp

 

Twin Reeler (Vibrato plugin VST2/3 Win 32/64bit):

http://www.klotoid.net/#

 

inTone 2 Solo (Live Fx processor and virtual instrument host - free version of intone 2 - Must sign up for account to download - Win/Mac):

http://shop.audified...iant=1032191189

 

Giada (Open source Loop/Drum Machine - Win/Mac/Linux):

http://www.giadamusic.com/

 

Delta Modulator (Bitcrusher plugin Win/Mac 32/64bit - Page also contains other freeware from Xfer):

https://www.xferrecords.com/freeware/

 

Levelator (Loudness/Normalization batch processor - Win/Mac - Must sign up for account):

http://lesound.io/product/levelator/

 

Kick Drum (120 Wav/Nki/Sfz samples from 99 Sounds):

http://99sounds.org/kick-drum/

 

Ample Bass P Lite (Bass instrument plug in - requires setting up an account to download - Win/Mac):

http://www.amplesoun...ro-pd.asp?id=19

 

PG8X V 2.0 (Roland JX-8P emulation instrument Win/Mac 32/64bit):

https://sites.google.com/site/mlvst0/

 

Sweetcase Vintage electric piano (Win/Mac 32/64bit - Must Like/Follow Noiseash on Facbook/Twitter/Youtube):

http://noiseash.com/downloads/sweetcase_vintage_electric_piano_vst_au_win_mac/

 

Harmonics (Kontact library requires full version not player The samples are free -323MB wav @48kHz/24bit - enter an email address for download link):

http://www.123creative.com/electronic-music-production-freebies/1305-free-kontakt-5-sample-library-harmonics.html

 

Acid Synth (Kontact library (requires full version and not free player) and Sample pack- loops and one shot wavs @ 24bit/44.1kHz--36.8MB dload/66 MB uncompressed - must register account):

https://www.biomedigital.com/downloads/edm-samples-acid-synths/

 

Tubes Creamer 808 Core (available june 12 Win/Mac - modelled after Ibanez tube screamer guitar pedal - currently available are various free pre-amp and cabinet modelling - Win/Mac 32/64bit):

http://mercuriall.com/cms/details_freestuff

 

Trilobite free 1.3 (Free 32 bit Win/Mac version of modular synth):

http://www.darwinarts.com/8-2/downloads/

 

N0t0miz0r v1.1 (Midi fx/utility - Win 32/64bit):

http://sys.efope.de/notom.html

 

Gigaverb (Reverb Win 32/64bit):

http://www.elements.byethost3.com/plugins.html#Gigaverb

 

Unfiltered Audio Indent (low-pass filter and multi-mode distortion - free until August 15th - 14.8 MB 32/64bit VST/VST3/AU/AAX Win/Mac - must create account for download, use details when activating in Daw):

http://bedroomproducersblog.com/2016/08/02/unfiltered-audio-indent-free/

 

Width knob (Stereo Width plugin 2.47MB EXE installer, 32/64-bit VST/VST3/AU/AAX/RTAS Win/Mac - Must sign up for an account to download):

http://www.bozdigitallabs.com/product/width-knob/

 

STA Delay (Summing tube processing Delay plugin - 33.2 MB EXE installer, 32/64-bit VST/AU/AAX Win/Mac- Must sign up for account and use voucher code for free download):

https://ask.audio/articles/exclusive-free-summing-tube-processing-delay-plugin-from-audified

 

OverToner V2/DoubleToner (Distortion/Multiband Distortion plugin - 316/788 KB download size, ZIP archive, 32/64-bit VST Win):

http://www.rebel-audio.com/

 

Tan free (Compressor plugin - 43.6 MB ZIP archive containing EXE installer, 32/64-bit VST/AU/AAX Win/Mac - Must sign up for an account to download):

http://bedroomproducersblog.com/2016/07/28/acustica-audio-tan-free/

 

Dx from mars (Sample pack free through August - 800x24bit wav - Kontact/Abelton/Logic/Maschine - Add name and email for download):

http://samplesfrommars.com/products/dx-from-mars

 

C64 Drums/Sfx (3gb wav 16 bit 44.1 kHz with both stereo and mono versions samplepack - total of 23132 unique samples - Page also contains other downloads):

http://www.doubletroubleaudio.com/freebies/

 

Samples-July round up (Bedroom producers blog Free Samples & Loops Round-Up July 2016 - Various links):

http://bedroomproducersblog.com/2016/07/31/free-soundware-july-2016/

 

200 Finger snaps (Finger snap sample pack - 27.8 MB ZIP archive, 24-bit WAV format also with Abelton drum rack - Site also contains other downloads):

http://patches.zone/blog/2016/7/25/free-download-snappack-snaprack-200-royalty-free-samples

 

Ice9 (Automute plugin designed to protect speakers from clipping/loudness etc - 32/64bit Win/Mac):

http://www.cerberusaudio.com/Software/Products/Ice9/

 

HY-Mono (Hy filters Monosynth instrument - "I mainly referred to structure of Oberheim SEM" Win 32/64bit Site also contains other downloads):

http://hyakken.moo.jp/WordPress/product/hy-mono/

 

Synth Magic (Various downloads mainly for Kontact, though many contain wav samples):

http://www.synthmagic.co.uk/free.html

 

Reverb Solo (Acon digital free reverb plugin 5.20 MB  ZIP archive containing EXE installer, 32/64-bit VST/AU/AAX Win/Mac - Must sign up fro account to download):

https://reverb.com/software/effects/acon-digital/47-reverb-solo

 

Divisor/MDLX (noise machine/modulated delay effect plugins 32bit Win):

http://www.fstateaudio.com/?p=144

 

VSCO 2 Community Edition (Orchestral sample library 1,952 samples 24bit WAV - 1.9 GB download - links to sfz files too):

http://vis.versilstudios.net/vsco-community.html

 

PG-8X (Roland Jx-8P emulation 32/64bit Win/Mac):

https://sites.google.com/site/mlvst0/

 

DX reverb light 3 (Anwida Soft reverb 32-bit & 64-bit VST/AU/SAWStudio):

http://www.anwida.com/product.asp?pid=7

 

Splash (Synth Win 32 bit):

http://www.noizefield.com/partner-projects/jb

 

OverDubber 2 (Delay 32 bit Win):

https://www.kvraudio.com/product/overdubber-2-by-klanglabs

 

HY-Delay 2 (Free version available in download links - 32/64 bit Win/Mac):

http://hyakken.moo.jp/WordPress/product/hy-delay2/

 

Graillon Free Octaver (Feature limited version voice ocatver plugin - 32/64 bit Win/Mac):

https://www.auburnsounds.com/products/Graillon.html

 

Vinyl Fills Vol 2 (30 Drum fill samples 16 bit Wav):

http://www27.zippyshare.com/v/OGEbORwi/file.html

 

Wonky Tape Atari (Sound fx and instruments sampled from Atari 2600 - instrument patch for Kontact and  78 16bit Wav samples):

http://www.mediafire.com/download/vk37nd3fe01dbbl/Synth_Magic_Wonky_Tape_Atari.zip

 

IZotope Neutrino (Spectral shaping plugin - 32/64 bit VST2/3,32/64 bit AU,32 bit RTAS,64 bit AAX,Audiosuite DPM and AAX - Must register for account):

https://www.izotope.com/en/products/mix/neutrino.html

 

Ivory Wind (Tenor recorder sample library for Kontact - Also contains 63 24-bit Wav - Must fill out form for download):

http://www.embertone.com/instruments/ivorywind.php

 

 

 

Other User contributions:

 

 

TechnoGremlin over on the Reaper forums also collected recommendations for pretty good freeware stuff, mostly VSTs: link to thread.

 

 

MFreeEffectsBundle from Meldaproduction available at https://www.meldapro...eeEffectsBundle

 

Really high quality stuff imo.

 

 

DontCrack and Bernie have taken the decision to offer Bus Driver free for a limited time. It was his way of expressing his gratitude to the audio community for the help he received. 

Hopefully you will be using every day and that it will accomplish the goal of saying 'Thank You' for the heart-warming support you showed for Bernie during the time when he really needed it.

Please use the following voucher to get your FREE Bus Driver...
VOUCHER CODE : freebusdriver

http://store.dontcra...roducts_id=2237

 

 

 

Get DDLY Dynamic Delay from February 9, 2016 through March 10, 2016 and you will receive a full license of DDLY Dynamic Delay for free. After March 10, 2016, DDLY Dynamic Delay will be available at the regular price of $49 USD. Limit one per customer. Not transferrable.

http://forum.renoise...y-from-izotope/

 

 

Heard some great samples from these guys recently - heres 1.8 Gb for free

 

http://www.samplesta...ee-sampler-pack

 

 

https://bundles.bitt...undles/beatport

 

Beatport, the global pulse of electronic music, presents this free Production Starter Kit, created to get beginner producers started making music. With more than 1GB of sounds, samples, and effects from exclusive Beatport Sounds labels, video tutorials courtesy of FaderPro, written tutorials from leading producers in the industry, and a 30% off coupon towards first-time purchases on Beatport Sounds, Beatport’s Production Starter Kit has everything aspiring music creators need to stop just listening, and start creating.

 


 

178: BatteryPowered Samples http://cdn.mos.music...red-samples.zip

 

 

The little-scale libraries have been useful to me lately, he has various content but the best are the samples of old sound and speech synthesizer chips: http://little-scale....bel/sample sets

 

 

http://boys2school.w...-libraries.html

 

1st year free pack content (about 300Mb in size):

-Ambient Guitar S.N. Lite (multisampled instrument for Kontakt and sfz, uses wav samples (24bit 44,1Khz), 1 instrument with 4 different settings)

-Atmos - Drones Instruments (9 instruments for Kontakt and sfz, uses wav samples (24bit 44,1Khz))

-Atmos - Drones wav Loops (20, wav 24bit 44,1Khz)

 

 

 


 

these are also fantastic free kontakt instruments http://www.hollowsun...packs/index.htm

 

 

U-he has another research-ware (that's what they call it) available for free:

http://www.u-he.com/...alpha-available

 

 

Great site here if you're looking for Pianos or other acoustic instruments. Often offered as either Kontakt sets or wrapped as VSTi.

 

http://bigcatinstruments.blogspot.de/

 

 

Another good freebie site here. Check the free stuff menu at the top for more categories. What i like about this site, it appears to be hand curated quality over quantity.

 

http://logic-pro-exp...akt-instruments

 

 

http://ifim.co.uk/products/tech-house

 

Free pack form a new label IFIM

 

 

 

Other threads containing free stuff:

 

Free VST/VSTI sites (Started by Cquencer. From 2003-2008 so may be outdated):

http://forum.renoise...-vstvsti-sites/

 

Royalty free sample packs (Started by Mxb - links to over 160 free Music Radar sample packs):

http://forum.renoise...e-sample-packs/

 

Free sample sites (Started by Escii):

http://forum.renoise...e-sample-sites/

 

Recommended freeware Vst-Plugins (Started by teknocide):

http://forum.renoise...re-vst-plugins/

 

Free samples, old school vinyl (Started by Yourlocalloser):

http://forum.renoise...ldschool-vinyl/

 

 

Free Plug in Websites:

 

Vst Planet: http://vstplanet.com/

Vst 4 free: http://www.vst4free.com/

Vst Warehouse: http://www.vstwarehouse.com/

Vst 4 you: http://vst4you.com/

Free plugins on Bedroom Producers Blog: http://bedroomproduc...ee-vst-plugins/

Free Plugins on KVR: http://www.kvraudio....ins/free/newest

Free Vst's: http://freevsts.com/

Best Free Vst: http://www.best-free-vst.com/

Mega Vst: http://www.megavst.com/

My Vst: http://myvst.com/

Free Vst: http://freevst.org/

Free Audio Samples: http://www.freeaudiosamples.com/

 

 

 

These should all be royalty free, where applicable. However, please be sure to check licensing for yourself.

This list is also not exhaustive, as I am adding as much as I observe in my web travels.

Message me if you are on this list and do not want to be, I am happy to remove the link).

Let me know if there are any dead links too and I will update as often as possible.

 

(Check edit date bottom of this post for latest update to list).

Glitch Art

$
0
0

Recently I have been experimenting with glitch art. This was a progression from glitching images to produce sound. I often import images into audio software (Mostly audacity, however as renoise can open any file, i do use it too), sometimes apply effects or just save/export the audio file. This can produce interesting results which can vary depending on file format and other factors. As I am moving more towards creating my own samples, I have begun to create more glitched sounds rather than rely on others. I also find satisfaction in creating or capturing a "real glitch" as opposed to something controlled. There is art in the mistakes created when pushing technology beyond it's intended use too and I am really enjoying exploring this.

As I have also been searching for art to complement my sound, it seemed natural to seek methods of visual glitching. I found a few helpful resources and started experimenting with data bending using a hex editor (Hexedit) and Wordpad. Results varied from different file formats (raw,jpg,bmp,tiff,psd) and processes. The possibility of manipulating image layers in a psd (phtoshop file) seems really interesting to me too.

 

For those unfamiliar with glitch art, here is a brief description on Wikipedia:

"Glitch art is the aestheticization of digital or analog errors, such as artifacts and other "bugs", by either corrupting digital code/data or by physically manipulating electronic devices (for example by circuit bending)." (read full article here).

 

Some resources i have found helpful:

Databending and glitch art primer

http://blog.animalswithinanimals.com/2008/08/databending-and-glitch-art-primer-part.html

http://blog.animalswithinanimals.com/2008/09/databending-and-glitch-art-primer-part.html

http://blog.animalswithinanimals.com/2014/10/databending-and-glitch-art-primer-part.html

 

Glitchet resources

http://www.glitchet.com/resources

 

I have only been experimenting with databending for a week, though I am enjoying the process and will continue. There is much to explore.

Some of you may already be quite familiar with glitch art, using hex editors etc. Please share your art :)

 

Some examples of my images:

 

vaeprism_sky_gltch.jpg

 

vaeprismclouddodglitchdsml.jpg

 

gitchcm2-65756editwpd2sml.jpg

 

phtglth.jpg

 

gtchc2-65756editwpadsml.jpg

 

stdiogltch.jpg

 

 

 

 

Render Battery 4 to new instrument is messed up

$
0
0

I set up a kit in Battery 4 that I'm now trying to render to an instrument. It sounds terrible, and looking at the waveform I can see something seriously wrong with the sample. If I render to sample from the pattern editor, it looks fine. It's just the render plugin to instrument where it's messed up:

 

sample gap.png


A Super Famicom style tune

$
0
0

Fooling around with the C700 vst tonight, came up with this in about an hour. Uses samples from FFVI, so sounds familiar. More of an experiment than anything else. 

 

 

Cheers

K

what happened to all the hardcore renoisers ?

$
0
0
what happened to
-jonas the plugexpert , keith 303 , beatslaughter , kaneel , botb( vivace ) ?
Occasionally I see some plugexpert music posts on renoise's facebook page
Imho the were the most talented users amongst the community .

Group and Single track rendering

$
0
0

Hi all, 

 

I just want to make sure I'm understanding something correctly before starting to mix my stems from renoise in reaper.

 

When I select the "save each track as a separate file" option, I noticed that I have what appears to be individual stems of each track from all my groups, as well as a composite "group track".  

 

1) Am I right in assuming there is no processing differences between the two and that this is essentially done to give users more control (i.e., they are sonically identical...just together or separate)?  

 

2) If #1 is accurate, to hear the accurate master gain of the stems once in reaper, I would either mute the individual tracks or mute the group composite, correct? That way I'm not accidentally doubling anything. (?) 

 

 

Thanks for any help you can offer!   

Complete beginner wants to cut notation editor out of most of workflow

$
0
0

Hi, I am a complete beginner to the world of DAWs. I have used LMMS a bit, but mainly stick to my go to notation editor - MuseScore. I find in my workflow that I sometimes work better entering notes for the individual instruments, but when I am stuck, working from a pattern in a DAW helps me to search for the right notes, tone, atmosphere that I need for a song. Importing and exporting between a notation editor and a DAW is a bit of a pain, so I am hoping to be able to cut out the notation editor for most of my workflow. I have been looking at a number of video tutorials and postings in the forum , but I still am not sure if Renoise can do what I want. Here is what I need to know - how do I do the following?

  1. Enter notes of varying length on a per track basis by using key command shortcuts? In MuseScore, I can press "4" for a quarter note, press "c" for a C note and then press ctrl arrow (up-down) to switch octave. Is anything like this possible either out of the box or to set up in Renoise?
  2. Both MuseScore and LMMS can use soundfonts, so I would need a simple, good quality and cheap alternative to soundfonts for Renoise. Orchestral and classic rock instruments.
  3. There will be times when I will need to import and export from Renoise - either as tracks or full songs. There appears to be some .mid support in Renoise, but I am unsure if the XML that Renoise uses is what MuseScore and other programs refer to as MusicXML (either compressed or uncompressed).
  4. Can the value (tone and length) of individual notes be changed in a way similar to a piano roll view?

Renoise looks really great, I hope it is possible to get it to work the way I need. I mainly use Linux, but also have a Mac and Windows machines, so the only alternative to Renoise that I can think of for my needs is Overture 5 or Reaper.

 

Renoise: worth it?

$
0
0

Sorry for the clickbait title.   :D  I'm a trackerboy; last one I used seriously was Fasttracker II back in the 90's.  I've always been yearning to get back into making music, but the workflow of DAWs like Ableton with their piano roll sequencing never really jived with me.  I love the precision and speed of working with tracker-based notation and just couldn't get into piano rolls.

Renoise looks like the perfect DAW for me: tracker-based, able to use VST plugins and control MIDI.  No longer am I a slave to just samples.

 

However, looking through the forums, I am sensing that Renoise is in a bit of a state of flux.  It appears that development has been paused on it, with no real idea of when the next update will come about.  As a new user, this seems OK to me, as I've also been reading that Renoise is actually being used as people's main DAW at the moment.  I reckon that the software must be in a pretty solid state for people to consider it their main tool for music creation.

But there is still a bit of doubt in my mind about Renoise, so I pose the question to the experienced users: what exactly needs updating in Renoise?  During my research in the forums, I've found a couple of concerns users have, namely, lack of sidechaining, as well as the GUI needs major revamping.

Are there other things about the software that a new user should be aware of?  I am not super-experienced with music creation, so maybe some issues are things that will not really concern me.  

 

I am asking this question, not to incite argument or bad vibes, but, being a geezer, I am trying to choose software so that I don't have to keep moving to other tools because of deficiencies, thus, needing to re-learn a bunch of stuff.

 

Is Renoise the only tracker-based DAW out there for Mac?

 

Thanks for any response.

Viewing all 7805 articles
Browse latest View live