Quantcast
Channel: Cockos Incorporated Forums
Viewing all 71197 articles
Browse latest View live

whoa voxengo span is so much better now

$
0
0
When did this happen?? I've been using an older version, I didn't think this thing ever got updated but now it's incredible


Play Stop, quand on est sur une fenêtre d'FX (RESOLU)

$
0
0
Un truc qui m'agace particulièrement et devient problématique quand j'enregistre un musicien, c'est le fait que mes raccourcis clavier deviennent inactifs quand la fenêtre Reaper n'est plus sélectionnée.
Quoi de plus normal en même temps, si je travaille sur 2 programmes, style Reaper et GoogleMail, je ne peux pas espérer que ma spacebar arrête ou démarre Reaper quand je suis sur Google.

La ou c'est plus critique, c'est quand je suis dans Reaper et que j'ouvre un EQ ou un compresseur, et que ma Spacebar ne répond plus. Il faut alors que je clique dans la fenêtre principale de Reaper pour que ces fonctions soient actives.

Michelob m'avait indiqué que je pouvais utiliser un hardware externe comme le Faderport. pour conserver ces fonctions Play/Stop active même si je suis sur un plugin. (il nous le confirmera s'il it ce thread).

Alors comme je n'en peux plus, je vais y passer. Sauf si quelqu'un à un truc !

The problem that the file used was not saved when overwriting the project.

$
0
0
If you select "Save Project As" and check "Copy all used files" as well, it works as expected, but if you "Save Project" then the used files will be Not copied.

I moved around to organize my files and sometimes looked for them many times.

Is there a setting to copy the file used when executing "Save Project"?

Lo-Fi Oversampler + Lo-Fi Tone Shaper

$
0
0
I almost feel like I'm trolling, but this is a thing and you might like it. Normally oversampling is there to preserve and extend a nice clear top end, right? Okay, so what if I just want to avoid aliasing and maybe even deliberately go for less treble, a darker/duller/dirtier sound? This is the result.

The plugin automatically upsamples to at least 88.2 kHz, basically it does a 2x oversample if needs be. The filter starts rolling off just above 1 kHz, has -3 dB around 4 khz, and basically cuts off everything above 10. It is minimum phase, less than 21 samples of group delay at DC.

I encourage you to put it on some white noise and see what it does to the spectrum. The frequency response is almost perfect for guitar, but there would need to be additional oversampling built in to handle high gain. I might tackle it at some point, we'll see.

I have bundled two plugins, one is more of a proof of concept saturation (you can switch the lo-fi on and off to hear the difference), the other is -

/// Lo-Fi Tone Shaper ///

Two different saturation algorithms, EQ controls based on 1073, and of course all going into this lo-fi oversampler. I've discovered that a high shelf helps bring some of that presence back, so I'm leaning on Tale's libraries for the code to do that, I have bundled the two necessary libraries with the zip. I hope you find it interesting.

...

Please feel free to give me feedback. Future revisions will probably add support for higher oversampling levels. Does anyone still use 22.05 kHz? I could add support for that, too, if requested.


Link in Stash

https://stash.reaper.fm/v/38503/lofi-oversampler.zip

Changelog

v1.0
-initial release

When will Reaper stop support for WIN7?

$
0
0
Since some plugin developers do not support WIN7 anymore, I am wondering when is Reaper going to stop?

How to send my mix?

$
0
0
Hi,

Is there a way I can save my song/mix so all the played files are, for example, Wav files. It's so I can send a mix to someone who doesn't have the same plugins/vst's.

Or what's the best way to do this?


Thanks

[Mouse Modifier] Move contents snap - does NOT work*

$
0
0
[Mouse Modifier] Move contents snap - does NOT work in relative snap mode
  1. Move item or item's contents off the grid
  2. Set snap setting "snap relative to grid"
  3. Use mouse modifier - left drag item - Move contents obeying snap
  4. item's contents will snap to grid absolute values

Open in offline mode option ?

$
0
0
Hi, apologies if it was discussed already and I missed this, but...

did we lose the option to open a project in "offline mode" ?

I cannot see it anymore when I use the "open" dialogue.

?


Thanks!
-t

When the script changes the note length, it will delete other notes in error.

$
0
0
When a script is used to modify the note length, if the previous note length exceeds the later note of the same pitch, if options: correct overlapping notes while editing, the latter note will be deleted. Please fix this problem.
The correct way is to correct the length of overlapping notes, not delete them.

unclickable clip indicator in custom theme

$
0
0
So I am using a custom Reaper theme and just realised that it doesn't allow me to click on the clipping indicator in the mixer to clear it. I have the function switched on in preferences and have confirme that when I use another theme it works as intended but for some reason in my preferred theme it doesn't work. Unfortunately I know nothing about making and modifying themes so have no idea why this might be happening. Can anyone help me in this regard? Either by explaining how I can fix it or possibly fix my theme for me? Any help appreciated, thanks.

Could Stretch Markers also be a Track Envelope?

$
0
0
The current system works okay, but is there really a reason that stretch marker data in REAPER couldn't be displayed as envelope data points?

It could be included a primary track envelope, such as volume, volume (pre-FX), pan, width, etc.

Midi Chords to item notes

$
0
0
Hi folks,

A wonderfull script made by MusoBob that lets you create a chords track with item notes.

Original post here : https://forum.cockos.com/showthread....36#post2254536

HOW TO use :
1- go to the MIDI notation from your midi item :
--- Double click your midi item to open midi editor
-- go to View -> Mode : Musical notation
2- Select the chords you want to be named
3- right click -> chords -> notation -> identify chords on editor grid
-- Close midi editor and go back to arrange view
4- select the track you want the chords name to appear
5- Run the script below for chords naming
6- (optional) run the heda script to fit the chords name to item height

Detailed video here : https://youtu.be/G_g2GfkkrOc

Code:

reaper.Undo_BeginBlock2(0)
--reaper.Main_OnCommand(40421,0) --Item: Select all items in track 40421
reaper.Main_OnCommand(40153,0) --Item: Open in built-in MIDI editor (set default behavior in preferences) 40153
take = reaper.MIDIEditor_GetTake(reaper.MIDIEditor_GetActive())
reaper.MIDI_Sort(take)
MIDIOK, MIDI = reaper.MIDI_GetAllEvts(take, "")
tChords = {}
stringPos, ticks = 1, 0
while stringPos < MIDI:len() do
    offset, flags, msg, stringPos = string.unpack("i4Bs4", MIDI, stringPos)
    ticks = ticks + offset
    if msg:byte(1) == 0xFF then
        chord = msg:match("text (.+)")
        if chord then
            tChords[#tChords+1] = {chord = chord, ticks = ticks}
        end
    end
end
tChords[#tChords+1] = {ticks = ticks}
for i = 1, #tChords do
    tChords[i].time = reaper.MIDI_GetProjTimeFromPPQPos(take, tChords[i].ticks)
end

-- CREATE TEXT ITEMS
-- text and color are optional
function CreateTextItem(track, start_pos, length, text, color)
   
  item = reaper.AddMediaItemToTrack(track)
 
  reaper.SetMediaItemInfo_Value(item, "D_POSITION", start_pos)
  reaper.SetMediaItemInfo_Value(item, "D_LENGTH", length)
 
  if text ~= nil then
    reaper.ULT_SetMediaItemNote(item, text)
  end
 
  if color ~= nil then
    reaper.SetMediaItemInfo_Value(item, "I_CUSTOMCOLOR", color)
  end
 
  return item

end

track = reaper.GetSelectedTrack(0, 0) -- Get selected track i
for i = 1, #tChords-1 do
    start_pos = tonumber(tChords[i].time)
    end_pos = tonumber(tChords[i+1].time)
    length = end_pos - start_pos
    text = tChords[i].chord
    color = reaper.ColorToNative(255,255,0)|0x1000000 -- Set Color (r,g,b)
    CreateTextItem(track, start_pos, length, text, color)
end
 reaper.MIDIEditor_OnCommand( reaper.MIDIEditor_GetActive(), 2 )
 reaper.Undo_EndBlock2(0, "Convert chords to text items", -1)

Reaper left alone is freezing pc

$
0
0
Hello,
I have a problem with Reaper.
Opening Reaper without any track is freezing my pc after less than 10 min.
If I'm putting a track with a VST, Reaper is apparently functionning normaly.
I'm using a Dell XPS 15, RME babyface and an Akai MPK88. I have tried the same hardware on an older pc without noticing any issue. I have performed a clean desinstall without any result. My system is working fine with standalone synth (Reaktor). This is a problam I have since the beginning of the yesr. I never had problem before.
Any idea? This is very frustrating..
Thanks

Lagging and ARA load

$
0
0
Help please.

I have a track with drums (multichannel) but frozen, bass guitar, two rhythm guitars, a lead guitar and two vocal tracks.

When I open Reaper the program opens in seconds but my project takes nearly three minutes to load and to save. It takes about one minute to load and then I see ARA load for the rest of the time.

When the project is actually open, there is no latency problem, I can record with a buffer rate of 64, providing I turn off effects.

Effects are CLA vocals on vocals and Melodyne on vocals and bass guitar (for quantatizing). Melodyne on vocals has been rendered and bypassed (as far as I can see). Not on the bass. So I turned that off. Two minutes to save all that.

So I started again. This time I deleted all the Melodynes although they are rendered for the vocals and bypassed and the bass Melodyne is bypassed.

Saved this (two or so minutes).

Then opened the project again and it opened within 10 seconds or so. Hence Melodyne must be the problems.

So even though I rended Melodyne for vocals and bypassed it, the project ages to fire up and save. Minus Melodyne it opens and saves in seconds.

I am at a loss what to do. How can I stop Melodyne from trying to load each time but still maintain it somehow in case I need to use it in future?

Any suggestions welcome.

Thinking about coming back to Reaper. Need some help with shortcuts etc

$
0
0
The title says it all.
Coming from Pro tools and just dipping my toe in the water to see what its like to be back again:)

I have a lot of things set up already (actions).

Right now, i'm missing a feature and want to know if its possible at all to get it.
In pro tools, you can press cmd+mouse click (i forget if its right or left mouse - muscle memory), on any mix parameter in the edit window (pan, send amount, level etc), and it will show that particular edit lane in the edit window. Can that be done?

That goes for pretty much all plugins etc.
Is there a way to just touch a specific parameter on the screen and display that parameters automation lane?

And regarding automation lanes (envelopes in reaper language). Is there a tool to easily mark and edit the selection like in the link.

https://streamable.com/xv9tr






Thanks a lot:) It looks promising already!

Getting Gain Reduction from VST plugin

$
0
0
Hi guys! I am new to this forum and can not yet orient myself well, so please forgive me if I am duplicating any thread.

I have a question: can I get some values from a VST plugin (such as Gain Reduction of a compressor, e.g. Waves CLA-76)? Within Reaper I have only found that I can get Audio from VST (in stereo), but no additional information.

My end goal is to transform this information to MIDI and transfer it to external controller which can understand MIDI and control a real VU Meter (this part is working).

Can you please help me understand what would be the best way? I am okay with any C++ API (or JS?), but I have not yet deep-dived into VST standard.

New JSFX Plugin. PRE 1073.

[6.05] $format wildcard names both the primary format

$
0
0
The $format wildcard names both files the primary format instead of their individual formats when rendering.

Re: Temporatily deactivating Playback from the spacebar

$
0
0
When using EW Choirs with WordBuilder I need to use the spacebar for text (for creating a space). The problem is that pressing the spacebar activates and stops playback and can't be used simultaneously for creating a space. Can I disable this function when I'm using WordBuilder? I can't find this in the manual? Many thanks!

More Vendors Supporting Linux

$
0
0
Greetings;

I have noticed that several vendors are starting to offer Linux ports for their plugins. These are the ones I have seen/bought/used:

- Auburn Sounds
- Audio Assault
- Audio Damage
- Bom Shanka Machine
- Venomode

I found all of these in the last 3-4 months. I started looking around in December, cause of all the black Friday sales happening...

I think this is a positive trend.
Viewing all 71197 articles
Browse latest View live