Feed aggregator
New song : Saudade
@andromeda wrote:
Hi everyone ! You can find this song on my soundcloud page ! Happy listening !
Posts: 1
Participants: 1
Confused Newbie
@LittleTommyPurr wrote:
Hi There,
My first post!. :+)
I’m a complete Newbie to Renoise. In the above screenshot from the Internet I’ve labeled the two tracks 1 & 2.
Track one is how Renoise appears to me. First a sample lane, then one column for volume.
Track 2 has a volume column AND a panning column.
How can I make all of my tracks have both columns like in track 2?.
Also, how come in track 2 there are yellow AND green numbers in the same column.
I used Trackers from 1988 with ‘The Care Bears’ Tracker, Med, and then Octamed.
In the mid-nineties I went on to use Logic, Cubase, Sonar and FL Studio. I never got used to the work flow with traditional DAWs, so I’m thrilled to rediscover my love for writing music using a Tracker.
Sorry for the long post. Thanks in advance for any help.
LTP. :+)
Posts: 3
Participants: 3
Improving the 0BXX Command
@helltrack wrote:
When using Phrases the B00 command automatically reverses the playback of the phrase (great fun), but now reversing samples can only be done within the Phrase.
How about we make B00 in the Volume Column always reverse samples, even when used with phrases. This way you could reverse the Samples and reverse the Phrase at the same time when using B00 in the Vol and the FX Command.
Better way would be to maybe have B03 as an option to reverse samples even when applied to phrases, this way the Vol Column stays free to have have actual Vol values and you could run B00 and B03 together in two FX Columns to achieve the same thing.
Posts: 1
Participants: 1
Sequencing a ND2, Pro1 and 0Coast
@maggotbrane wrote:
really confused here. I am a newb when it comes to midi. seems i can only trigger one channel at a time. nd2 is channles 1-6, 0coast ch7, and pro1 ch12…its fine in ableton but im baffled with renoise, Im usinfg a quadra thru with my babyface midi interface… any help is greatly appreciated
Posts: 1
Participants: 1
Switching phrase, continue playing from previous position, not from start
@trocker wrote:
In keymap mode, when switching patterns, is it possible the new phrase will continue from position of previous phrase and not starting always from zero, meaning its beginning? Somehow this feature I could not find, tried a few things, looked around desperately, now asking here. Such an important function could not be forgotten by the devs I thought.
Then it can be much more fun mixing various phrases together, combining them freely, timewise. Taking the beginning of phrase a, the end of phrase b, for example. The middle of phrase c.
Posts: 1
Participants: 1
Startup notifier?
@esaruoho wrote:
Hi, how would I go about creating a startup notifier that runs a couple of settings right whenever Renoise starts with a new document (at startup, or with “New song”)?
I’m basically looking to set “Keep Sequence Sorted” to false, and a few other things.
Also, how to modify the startup notifier to add another notifier that is run whenever a sample is recorded or loaded?
Posts: 1
Participants: 1
Resizeable Preferences / Keyboard Shortcuts Panel
@helltrack wrote:
Changing Keyboard Shortcuts in the small Window is driving me insane sometimes, please give us a option to resize the Preferences Panel / Keyboard Shortcuts Panel.
Posts: 1
Participants: 1
How many channels/columns are possible in a pattern or phrase at maximum in redux?
@trocker wrote:
And is it possible assigning each column a different stereo output?
If yes, can this be done automatically?
Example: 4 columns, each using a different stereo output.
I guess it is not possible loading Amiga .mod files into redux, not sure why this option was excluded, in theory in should be possible, somehow, or not?
Posts: 1
Participants: 1
Pin Instruments to Tracks
@helltrack wrote:
Would love to be able to Pin Instruments to Tracks, so when moving Patterns Blocks around via Drag and Drop, the Instrument Number of the Notes in the Pattern would automatically be changed to that of the Tracks pinned Instrument.
Posts: 1
Participants: 1
Bug: Lua 'move_slice_marker' Updates Notes Incorrectly
@Achenar wrote:
Start a new song, load a sample into the initial slot and run this:
renoise.song():pattern(1):track(1):line(1):note_column(1).note_string = "C-4" renoise.song():pattern(1):track(1):line(1):note_column(1).instrument_value = 00 renoise.song():instrument(1):insert_phrase_at(1) renoise.song().selected_phrase_index = 1 renoise.song():instrument(1):sample(1):insert_slice_marker(100) renoise.song():instrument(1):sample(1):insert_slice_marker(200) renoise.song():instrument(1):sample(1):insert_slice_marker(300) renoise.song():instrument(1):sample(1):move_slice_marker(100, 101)Now take a look at the Pattern Editor and the Phrase Editor. Both notes that were C-4 (one was automatically inserted into the new phrase) have been changed to D-4. Nothing is supposed to happen in this situation and when you manually recreate it that’s precisely the case. It seems like it thinks that it’s moved the marker behind or before another - changing the slice order - and is making incorrect adjustments.
Interestingly, if the sample column in the Phrase Editor is enabled before the ‘move_slice_marker’ is run, then the notes there are preserved, but the Pattern Editor is still affected either way. Edit - I think the phrase notes are still being edited in this situation even if they appear the same, because sample playback stops. Playback only stops when moving markers manually if slices change order.
Here’s a more thorough test:
renoise.song():pattern(1):track(1):line(1):note_column(1).note_string = "C-4" renoise.song():pattern(1):track(1):line(2):note_column(1).note_string = "C#4" renoise.song():pattern(1):track(1):line(3):note_column(1).note_string = "D-4" renoise.song():pattern(1):track(1):line(4):note_column(1).note_string = "D#4" renoise.song():pattern(1):track(1):line(1):note_column(1).instrument_value = 00 renoise.song():pattern(1):track(1):line(2):note_column(1).instrument_value = 00 renoise.song():pattern(1):track(1):line(3):note_column(1).instrument_value = 00 renoise.song():pattern(1):track(1):line(4):note_column(1).instrument_value = 00 renoise.song():instrument(1):insert_phrase_at(1) renoise.song().selected_phrase_index = 1 renoise.song():instrument(1):phrase(1).instrument_column_visible = true renoise.song():instrument(1):phrase(1):line(1):note_column(1).note_string = "C-4" renoise.song():instrument(1):phrase(1):line(2):note_column(1).note_string = "C#4" renoise.song():instrument(1):phrase(1):line(3):note_column(1).note_string = "D-4" renoise.song():instrument(1):phrase(1):line(4):note_column(1).note_string = "D#4" renoise.song():instrument(1):phrase(1):line(1):note_column(1).instrument_value = 00 renoise.song():instrument(1):phrase(1):line(2):note_column(1).instrument_value = 00 renoise.song():instrument(1):phrase(1):line(3):note_column(1).instrument_value = 00 renoise.song():instrument(1):phrase(1):line(4):note_column(1).instrument_value = 00 renoise.song():instrument(1):sample(1):insert_slice_marker(100) renoise.song():instrument(1):sample(1):insert_slice_marker(200) renoise.song():instrument(1):sample(1):insert_slice_marker(300) renoise.song():instrument(1):sample(1):move_slice_marker(100, 101)Posts: 1
Participants: 1
Plugin instrument fx chain
@OopsIFly wrote:
I am thinking of a feature like you could set an instrument fx chain for vsti plugins, just like you could with samples. And maybe have multiple vstis in the instrument. Maybe even keyzones for each vsti, with individual transpose…
This way plugin instruments could be processed and layered, like it is already possible with renoise native instruments.
Posts: 1
Participants: 1
TAL Linux plugins
@assink wrote:
Apparently TAL now also supports linux for their non-free plugins!
Native Linux supportUpdated [TAL-BassLine-101] inux build. Following experimental native Linux builds are available:
Posts: 1
Participants: 1
128k — An old tune with some new graphics
Adding FL Studio as ReWire client renders as a black screen
@Pomax wrote:
If I add FL Studio (20.6) as ReWire plugin to a Renoise (3.2.1) project on MacOS (high sierra - mojave didn’t actually have anything worth upgrading for DAW wise, and catalina would literally make tens of thousands of dollars worth of VST instruments and effects stop working so… high sierra it is), it starts up as a black screen, with only the rewire dialog visible:
I asked about this on the FL Studio support subforum, and their engineer said “[I] assume this is Renoise that fails to render in this case. Could you contact the Renoise developers about this?” hence this bug report.
Clicking the fruit logo (which toggles between host and client) causes a rerender, so it’s not impossible to work with, but I didn’t even know you could click that until their devs pointed it out, and had redone my entire Renoise project in FL Studio just so I could get a single synth solo with midi automation added into my track before I leanred I could just… click somewhere instead =S
Posts: 1
Participants: 1
Change location of config files? (Linux)
@aeswaprod wrote:
I was just wondering if there’s a way to change the location of the config files and stuff from ~/.renoise/* to ~/.config/renoise/* or something?
Posts: 1
Participants: 1
How to use LUA GUI to write to automation volume
@esaruoho wrote:
Hi, I’m trying to figure out what would be the most convenient way of writing to a specific track automation volume via the LUA GUI. I’m only thinking of steps for on, and steps for off (regular volume, either total silence, or “regular volume”).
Posts: 1
Participants: 1
Have you ever noticed people... looking "different"?
@BatBoy wrote:
https://mega.nz/#!OTgRwQAK!gWvC6tezxb51jG7zFHljVblrzMjiTx5_uUZOACPj4KM
with this zip, we can rule the entire planet!
Posts: 2
Participants: 1
Litz Human [Piano]
@Redman wrote:
Very quickly made piano piece made in about 2 hours inspired by Franz Liszt. Contains one chord sequenced in a broken fashion, randomly selected notes for counterpoint melody, and one lower octave chord for stabs.
Gif was taken from Giphy(dot)com. The little character fit the mood of the piece I thought.
Posts: 2
Participants: 2
Loop Settings per Section
@trueschool wrote:
(Reposting here in case this is already currently possible).
In the song sequencer, it’s possible to group patterns into sections, but I have an idea to make this feature MUCH more useful for live performance.
Imagine if you could set each section to loop endlessly or to move ahead to the next section automatically.
In the screenshot below, I have a song where I want the intro to loop the first two patterns over and over until I tell the song to move ahead to the Verse 1 section.
Then we automatically move from Verse 1 to the Chorus. After the chorus, we go to the Break which can loop endlessly (to support an extended guitar solo or whatever), but when we’re ready to dive into Verse 2, we just push the song ahead.
This would just require two settings to be added to the Section feature.
One that says “loop this section until the user inputs a command to move forward”,
or one that says "move through this section automatically (the default functionality as it exists now).
Then, the individual sections could be assigned to a simple MIDI controller, allowing the musician to switch between whole sections of the song, greatly simplifying live performance.
I’m mainly a guitar player and singer, and when I perform live, I’d like to be able to easily switch between patterns without a lot of input and hassle. Ideally, I’d map a footswitch with the 4-5 main sections of a song and switch between them while I play.
What do you think? Is this possible? Would this functionality add value for you?
Posts: 1
Participants: 1
Loop Settings per Song Section
@trueschool wrote:
In the song sequencer, it’s possible to group patterns into sections, but I have an idea to make this feature MUCH more useful for live performance.
Imagine if you could set each section to loop endlessly or to move ahead to the next section automatically.
In the screenshot below, I have a song where I want the intro to loop the first two patterns over and over until I tell the song to move ahead to the Verse 1 section.
Then we automatically move from Verse 1 to the Chorus. After the chorus, we go to the Break which can loop endlessly (to support an extended guitar solo or whatever), but when we’re ready to dive into Verse 2, we just push the song ahead.
This would just require two settings to be added to the Section feature.
One that says “loop this section until the user inputs a command to move forward”,
or one that says "move through this section automatically (the default functionality as it exists now).
Then, the individual sections could be assigned to a simple MIDI controller, allowing the musician to switch between whole sections of the song, greatly simplifying live performance.
I’m mainly a guitar player and singer, and when I perform live, I’d like to be able to easily switch between patterns without a lot of input and hassle. Ideally, I’d map a footswitch with the 4-5 main sections of a song and switch between them while I play.
What do you think? Is this possible? Would this functionality add value for you?
Posts: 1
Participants: 1