What do other DAWs have that REAPER doesn't? (songwriting, composition, music production)

Discussion in 'DAW' started by bigbing, Jan 25, 2025 at 2:19 PM.

  1. tvandlover

    tvandlover Producer

    Joined:
    Aug 27, 2016
    Messages:
    286
    Likes Received:
    142
    ...............yet!
     
  2. paul_audioz

    paul_audioz Ultrasonic

    Joined:
    Feb 21, 2023
    Messages:
    89
    Likes Received:
    37
    Yes, but with the little help of friend Chat there is a LUA script for this:
    -- Script to select the first note in a chord in REAPER MIDI editor
    local editor = reaper.MIDIEditor_GetActive()
    local take = reaper.MIDIEditor_GetTake(editor)

    if not take then return end

    -- Initialize variables
    local _, notes, _, _ = reaper.MIDI_CountEvts(take)
    local firstNoteIdx = nil
    local firstNoteStart = nil

    -- Loop through all notes
    for i = 0, notes - 1 do
    local _, selected, _, startppq, _, _, _, _ = reaper.MIDI_GetNote(take, i)
    if selected then
    if firstNoteStart == nil or startppq < firstNoteStart then
    firstNoteIdx = i
    firstNoteStart = startppq
    end
    end
    end

    -- Select only the first note
    if firstNoteIdx ~= nil then
    reaper.MIDI_SelectAll(take, false)
    reaper.MIDI_SetNote(take, firstNoteIdx, true, false, nil, nil, nil, nil, nil)
    end

    reaper.MIDI_Sort(take)

    Did not tested it, since I do not need it. I am a very simple user of Reaper. But it shows what Reaper is capable of for even very smart and elaborate use.
     
  3. DarkV

    DarkV Member

    Joined:
    Mar 3, 2021
    Messages:
    32
    Likes Received:
    16
    Perhaps it can be done in less convoluted way but in my current workflow, I'd export that midi clip from Piano Roll and save the instrument chain for a later use with that midi file.
     
  4. Myfanwy

    Myfanwy Platinum Record

    Joined:
    Sep 16, 2020
    Messages:
    454
    Likes Received:
    221
    You can save selected track(s) as track template and include midi items, works great!
     
  5. carrots

    carrots Member

    Joined:
    Aug 29, 2024
    Messages:
    20
    Likes Received:
    10
    I use Reaper every day for years. This is not a hate post, only reality. It is one of the worst DAW's for ITB creative songwriting and production workflow, and costs the same as or more than other DAW's once you add on the simple necessities to bring it up to the times.

    -Drum rack
    -Sequencer
    -Sampler and Slicer
    -Modulation
    -Live loop/clip launcher

    It doesn't have the above or has outdated and poor implementations, relies entirely on community scripts or paid add-ons that cost more than Reaper.

    If you are using stock windows 10< and not floating FX, Reaper IS ugly, and does not give a shit about giving you dark mode menus. Scripts and their workflow is ugly mess.

    The community and scripts are cool, but they are not stable across all systems like stock Reaper. You will not reach close to Reapers optimisation capabilities once you start opening scripts. A lot of scripts give frame rate lag across whole project with only a few tracks open, in big project this is death. Many are too big to dock, do not live peacefully in background, require actions bring back up, and have a host of bugs on playback and render.

    I come across a lot of threads and posts about how godly Reaper is but they are really far from truth when it comes to creative song writing and production. Use another DAW for this, any, seriously. Reaper hardcorists and those stuck in the honeymoon won't like this. And pay attention to how many people bring up scripts, and why 95% of this shit isn't baked into stock reaper.
     
    • Like Like x 1
    • Interesting Interesting x 1
    • List
  6. bigbing

    bigbing Newbie

    Joined:
    Nov 10, 2023
    Messages:
    9
    Likes Received:
    2
    Thank you for posting this. That’s kinda how I feel as well and I’ve been using Reaper for 5 years. I’ve got tonnes of custom scripts, community made mods and extensions etc. And it still feels like I’m making music in something that was never meant to be used as a composing tool (I’ve got all the scripts in the world regarding the piano roll and MIDI). The same goes for the themes, I don’t get people who simply change the skin and claim it looks like a different DAW. It doesn’t. It looks as ugly as before, just a little different.

    What DAW do you use for songwriting, if I may ask? How do you like it and how better is it from Reaper?
     
  7. soundog

    soundog Noisemaker

    Joined:
    Mar 3, 2021
    Messages:
    15
    Likes Received:
    3
    I agree 100%. I wasted a year trying to make it useful for songwriting and creation. In the end, I gave up on it; I'll not go down that path again! (FYI, I've settled on Logic as the best DAW for songwriting.)
     
  8. shinyzen

    shinyzen Audiosexual

    Joined:
    Sep 28, 2023
    Messages:
    808
    Likes Received:
    523
    Max for Live. Its a never ending slew of user created devices. Theres so many incredible free ones. Some of the most unique synths out in the world are done in Max. Theres incredible sound design and mixing tools too. My favorite transient shaper is Max, spectral processing sound design, sequencers and midi warpers, etc etc etc. I know Reaper has JSFX, but Max still beats it, and you can run JSFX in ableton as well. I could be wrong, but im pretty sure you cannot run Max inside reaper. Although with their recent updates, Max seems to be heading in that direction.
     
  9. Shiori Oishi

    Shiori Oishi Platinum Record

    Joined:
    Oct 21, 2023
    Messages:
    290
    Likes Received:
    164
    Reason taught me about modular routing, from basic to advanced, in a way Reaper never could... But Reaper is way better at it in the end.
     
Loading...
Loading...