Go Back   Cockos Incorporated Forums > REAPER Forums > REAPER General Discussion Forum

Reply
 
Thread Tools Display Modes
Old 06-13-2019, 12:52 PM   #41
_Stevie_
Human being with feelings
 
_Stevie_'s Avatar
 
Join Date: Oct 2017
Location: Black Forest
Posts: 5,054
Default

Hey mj,

yeah exactly, that was in track mode. Awesome, thanks, will check it!
__________________
My Reascripts forum thread | My Reascripts on GitHub
If you like or use my scripts, please support the Ukraine: Ukraine Crisis Relief Fund | DirectRelief | Save The Children | Razom
_Stevie_ is offline   Reply With Quote
Old 06-13-2019, 12:55 PM   #42
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Quote:
Originally Posted by crd View Post
This template is great. I really appreciate you sharing it!!!

Does anyone have any tips on editing the plugin fx parameters page? I would love to have it show the articulation information from Reaarticulate when I select a string sound or open something else when I choose Zebra, etc.
Hi crd, to be honest, I don't use and know reaticulate.... as I know there's another Reaper user who made a very sophisticated lemur template for it. Maybe he has some tips ?

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 06-24-2019, 01:50 PM   #43
crd
Human being with feelings
 
Join Date: May 2019
Posts: 29
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Hi crd, to be honest, I don't use and know reaticulate.... as I know there's another Reaper user who made a very sophisticated lemur template for it. Maybe he has some tips ?
I am slowly putting together something myself based on your amazing work. I will make sure to share it for anyone else who uses Reaticulate with your template when I am done.

Thank you again. Your template has made my Reaper workflow much much smoother.
crd is offline   Reply With Quote
Old 07-02-2019, 07:50 AM   #44
KuulArt
Human being with feelings
 
Join Date: Apr 2015
Posts: 82
Default

Has anyone optimised this for regular iPad? Otherwise this looks awesome!
KuulArt is offline   Reply With Quote
Old 09-18-2019, 05:04 AM   #45
_Stevie_
Human being with feelings
 
_Stevie_'s Avatar
 
Join Date: Oct 2017
Location: Black Forest
Posts: 5,054
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Hi,

Touch mode for the volume fader in track view should be fixed now. You only need to replace the ReaperOSC-file.

Regards, mj
Finally had the time to check, it works now!
So you only changed a line in the OSC config?
__________________
My Reascripts forum thread | My Reascripts on GitHub
If you like or use my scripts, please support the Ukraine: Ukraine Crisis Relief Fund | DirectRelief | Save The Children | Razom
_Stevie_ is offline   Reply With Quote
Old 09-18-2019, 05:48 AM   #46
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Quote:
Originally Posted by _Stevie_ View Post
Finally had the time to check, it works now!
So you only changed a line in the OSC config?
Hi Stevie, glad it worked. Faders in lemur have also a "z"-variable that detects if a fader is being touched (1) or not (0). In the ReaperOsc-file you can use that for "TRACK_VOLUME_TOUCH". I forgot to insert "b/track/vol/z" for the fadertouch in track-view.

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 09-21-2019, 05:05 AM   #47
_Stevie_
Human being with feelings
 
_Stevie_'s Avatar
 
Join Date: Oct 2017
Location: Black Forest
Posts: 5,054
Default

Ahh thanks for pointing that out! Learned something new today
__________________
My Reascripts forum thread | My Reascripts on GitHub
If you like or use my scripts, please support the Ukraine: Ukraine Crisis Relief Fund | DirectRelief | Save The Children | Razom
_Stevie_ is offline   Reply With Quote
Old 12-28-2019, 05:19 PM   #48
yimbot
Human being with feelings
 
Join Date: Sep 2008
Location: Adelaide, Australia
Posts: 159
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Hi dinoc

I made ReaperControl 2 for the iPad Pro 12.5'. There's an option in the Lemur editor to setup/change the screen resolution, but most of the time that doesn't work very well... and sure, this setup won't fit on a phone ;-/.

Regards, mj
I'm setting this up on an iPad Pro 11 and can't see the resolution option here. Is it in the Lemur options in the iPad editor?
yimbot is offline   Reply With Quote
Old 01-06-2020, 06:53 PM   #49
yimbot
Human being with feelings
 
Join Date: Sep 2008
Location: Adelaide, Australia
Posts: 159
Default

Any idea if there is a way to recognise the plugin that you are opening on a track so that we can create a tailored GUI for specific plugins?
yimbot is offline   Reply With Quote
Old 01-07-2020, 12:37 PM   #50
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Hi yimbot,

1. The resolution can be changed in the Lemur editor, right corner next to the the midi map and refresh button.

2. nice idea ! but I don't have a solution for that...perhaps use the fx-name ?

Look into the .ReaperOSC-file for "FX_NAME s/fx/name s/fx/@/name s/track/@/fx/@/name"
In Lemur I don't know the exact scripting, but something like:

decl x=OSC_ARGS[0];
if (x="xxxyyy")show(CustomButton2, 1);
else show(CustomButton2, 0);

The problem is how to extract the string with the fx-name out of the OSC-message.
I would be interested, if you find a working solution.

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 01-08-2020, 03:32 AM   #51
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Hi yimbot,

Tried a little bit more and this worked and could be a starting point:

1. create a script in the object you want to show or hide (fader, container, tab etc.)
2. script execution: On OSC
3. custom address: /fx/name
4. script:
----------------------------------------
if(OSC_ARGS=='Krush (Tritik)')show(getobject(), 1);
else show(getobject(), 0);
----------------------------------------
- show(object, 1) = shows the object / show(object, 0) = hides the object
- "getobject()" is a self-reference to the object, can be replaced with other objects-name
- In this case I took the vst-plugin "Krush (Tritik)" to show or hide the object containing this script

Unfortunately I couldn't get it to work with Reaper's "last_touched_fx_name"...

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 01-11-2020, 06:16 PM   #52
yimbot
Human being with feelings
 
Join Date: Sep 2008
Location: Adelaide, Australia
Posts: 159
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Hi yimbot,

Tried a little bit more and this worked and could be a starting point:

1. create a script in the object you want to show or hide (fader, container, tab etc.)
2. script execution: On OSC
3. custom address: /fx/name
4. script:
----------------------------------------
if(OSC_ARGS=='Krush (Tritik)')show(getobject(), 1);
else show(getobject(), 0);
----------------------------------------
- show(object, 1) = shows the object / show(object, 0) = hides the object
- "getobject()" is a self-reference to the object, can be replaced with other objects-name
- In this case I took the vst-plugin "Krush (Tritik)" to show or hide the object containing this script

Unfortunately I couldn't get it to work with Reaper's "last_touched_fx_name"...

Regards, mj
Thanks so much for the replies!
That's a great starting point and I'll see what I can do from there - if I manage to get things cooking well, I'll report back.

Much appreciated!
yimbot is offline   Reply With Quote
Old 04-06-2020, 08:07 AM   #53
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default ReaperControl 2.2

Hi, I hope everybody is doing well!

There's a new version (2.2) of ReaperControl touchscreen OSC controller for Lemur.

Update April 2020:
- reworked setup for external MIDI controller and relative MIDI mode
- added MIDI monitor
- added dropdown menu "Device FX Follows"
- added bank select for markers and regions

Download at Lemur homepage liine.net: https://liine.net/en/community/user-library/view/657/
or
Reaper stash: https://stash.reaper.fm/38767/ReaperControl2_2.zip

Stay save, mj

Last edited by GeckoLikesMartini; 04-06-2020 at 08:15 AM.
GeckoLikesMartini is offline   Reply With Quote
Old 04-06-2020, 06:57 PM   #54
tdc
Human being with feelings
 
Join Date: Oct 2019
Location: Sydney
Posts: 471
Default

Hi MJ,

Thanks for all your work on this project - its a great tool, and also has been wonderful in helping me learn more about Reaper's use of OSC.
tdc is offline   Reply With Quote
Old 04-07-2020, 11:56 AM   #55
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Quote:
Originally Posted by tdc View Post
Hi MJ,

Thanks for all your work on this project - its a great tool, and also has been wonderful in helping me learn more about Reaper's use of OSC.
Glad you like it !
GeckoLikesMartini is offline   Reply With Quote
Old 04-07-2020, 02:24 PM   #56
crd
Human being with feelings
 
Join Date: May 2019
Posts: 29
Default

Awesome. Thank you! I'm looking forward to checking out the update.
crd is offline   Reply With Quote
Old 04-11-2020, 03:15 AM   #57
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Quote:
Originally Posted by crd View Post
Awesome. Thank you! I'm looking forward to checking out the update.
Cool! And don't hesitate to report bugs.

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 11-23-2020, 01:33 PM   #58
Nogla
Human being with feelings
 
Join Date: Apr 2018
Location: Kaliningrad
Posts: 38
Default

-del-

Last edited by Nogla; 11-23-2020 at 02:52 PM.
Nogla is offline   Reply With Quote
Old 12-22-2020, 09:47 AM   #59
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default ReaperControl for free Open Stage Control

Link to new thread:

https://forum.cockos.com/showthread.php?t=245876

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 03-26-2022, 01:18 AM   #60
Finnish
Human being with feelings
 
Finnish's Avatar
 
Join Date: Jun 2006
Location: Finland, Kuopio
Posts: 911
Default

Hi,

Liine has risen from the ashes, so are there any updates for this amazing ReaperControl 2?

I'm using it (the latest from Liine site) with my old iPad2, and it's wonderful!
__________________
REGISTERED USER
My music, studio and bands
Finnish is offline   Reply With Quote
Old 03-26-2022, 04:30 AM   #61
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Hi Finnish,

Glad you like that oldie ;-). Looking at the internet presence of liine.net, I'm still not that convinced of a "resurrection". I waited a long time for some updates or even a sign from the developers about the future of Lemur and also never received an answer to my questions...
So at one point I thought it's maybe time to look further and in the meantime there are at least two valid options with Open Stage Control and the latest TouchOSC.

For Open Stage Control I already build a template. It's free and you can download the app here: https://openstagecontrol.ammd.net and the template here: https://openstagecontrol.discourse.g...ntrol-2020/946

I'm also fiddling with the latest TouchOSC and thinking about a port of the Lemur template to TouchOSC.

So, no plans to update the Lemur template but maybe a TouchOSC version might arise sometime ;-).

And obviously the templates are free and you can change and enhance them as you like.

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 03-27-2022, 01:37 AM   #62
Finnish
Human being with feelings
 
Finnish's Avatar
 
Join Date: Jun 2006
Location: Finland, Kuopio
Posts: 911
Default

Hi,

And thanks!

I'm also into TouchOSC and it's installed in my newer Android tab. So if you have a chance to port that Liine template to TouchOSC with some updates or something - I'm in!!!




Quote:
Originally Posted by GeckoLikesMartini View Post
Hi Finnish,

Glad you like that oldie ;-). Looking at the internet presence of liine.net, I'm still not that convinced of a "resurrection". I waited a long time for some updates or even a sign from the developers about the future of Lemur and also never received an answer to my questions...
So at one point I thought it's maybe time to look further and in the meantime there are at least two valid options with Open Stage Control and the latest TouchOSC.

For Open Stage Control I already build a template. It's free and you can download the app here: https://openstagecontrol.ammd.net and the template here: https://openstagecontrol.discourse.g...ntrol-2020/946

I'm also fiddling with the latest TouchOSC and thinking about a port of the Lemur template to TouchOSC.

So, no plans to update the Lemur template but maybe a TouchOSC version might arise sometime ;-).

And obviously the templates are free and you can change and enhance them as you like.

Regards, mj
__________________
REGISTERED USER
My music, studio and bands
Finnish is offline   Reply With Quote
Old 03-27-2022, 01:45 AM   #63
Finnish
Human being with feelings
 
Finnish's Avatar
 
Join Date: Jun 2006
Location: Finland, Kuopio
Posts: 911
Default

I've checked Open Stage Control.. I got to be honest and that's a bit too extreme solution for me, I'm really liking TouchOSC and Liine for their quite basic way of operating.
__________________
REGISTERED USER
My music, studio and bands
Finnish is offline   Reply With Quote
Old 03-27-2022, 10:52 AM   #64
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Just out of curiosity - what kind of updates do you think of ? Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 03-28-2022, 09:52 AM   #65
Finnish
Human being with feelings
 
Finnish's Avatar
 
Join Date: Jun 2006
Location: Finland, Kuopio
Posts: 911
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Just out of curiosity - what kind of updates do you think of ? Regards, mj
At least some kind of adjustment for the faders:
- how sensitive they are (e.g. fine tuning and 0.1db increments)
- possibility to select track/fader by touching the fader (but so that it doesn't immediately react with volume adjustment)
- when selecting a track the 10-track view would follow, like the selected track would be the first in the 10-track view, or in the middle

I've gotten myself into Softube Console 1 ecosystem and it's marvellous.. I'm trying to add this ReaperControl to act as a Fader (I don't want to buy Softube Fader, yet..) and so far I've managed to use ReaperControl in "layer mode": when I collapse my tracks to folder view in Reaper mixer I see only those folder/busses in ReaperControl. It's actually really good so far, I've added a shortcut in the upper toolbar to collapse tracks and open tracks.

The integration is not perfect, though. If I adjust volume or pan in Softube C1 I see the changes in Reaper mixer, but not in ReaperControl. But the changes made in ReaperControl can be seen in Reaper mixer and in Console 1.

I've also modified the ReaperControl-template to work in my old iPad2, that's about 10" (I had to make font size smaller in the template but no problem). And adding/modifying the shortcuts in A/B/C slots is a breeze, that's really really good function in your template!
__________________
REGISTERED USER
My music, studio and bands
Finnish is offline   Reply With Quote
Old 03-28-2022, 11:47 AM   #66
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Thanks for your inputs.

Quote:
Originally Posted by Finnish View Post
The integration is not perfect, though. If I adjust volume or pan in Softube C1 I see the changes in Reaper mixer, but not in ReaperControl.
Did you try different settings in the setup menu:

REAPER_TRACK_FOLLOWS xy
DEVICE_TRACK_FOLLOWS xy
DEVICE_TRACK_BANK_FOLLOWS xy
DEVICE_FX_FOLLOWS xy

Maybe that helps ? You can also change this in the ReaperOSC-file. Also there you can find the different possible settings.

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 03-29-2022, 09:38 AM   #67
Finnish
Human being with feelings
 
Finnish's Avatar
 
Join Date: Jun 2006
Location: Finland, Kuopio
Posts: 911
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Thanks for your inputs.

Did you try different settings in the setup menu:

REAPER_TRACK_FOLLOWS xy
DEVICE_TRACK_FOLLOWS xy
DEVICE_TRACK_BANK_FOLLOWS xy
DEVICE_FX_FOLLOWS xy

Maybe that helps ? You can also change this in the ReaperOSC-file. Also there you can find the different possible settings.

Regards, mj
Thanks, I tried these
Code:
REAPER_TRACK_FOLLOWS xy
DEVICE_TRACK_FOLLOWS xy
DEVICE_TRACK_BANK_FOLLOWS xy
DEVICE_FX_FOLLOWS xy
But none of those or combination of those made the changes appear in ReaperControl - but the changes made in the FX-window (2nd tab in ReaperControl) appeared in the Console 1.

So.. Volume, pan and FX parameters don't show up in ReaperControl, no matter what I do It's close, but no cigar.

I've never opened up a ReaperOSC-file, do you have any suggestions or tips if there's a clear area where I could try some changes?

If I could get a (Console 1 wise) true bi-directional operation with Reaper, Console1 and ReaperControl -> party time!

EDIT: Just one last observation -> if I adjust volume and pan in Console 1 (example track 6) and I'm looking at the "Track view" in ReaperControl, I don't see the adjustments in ReaperControl. But if I change from track 6 to track 5 and back to track 6 the adjustments appear on the ReaperControl view.

Hmmm, somehow ReaperControl is not reading vol/pan/FX in real time? It's strange because when I make changes in Console 1 I see Reaper mixer fader (volume) change, but nothing on ReaperControl. If I adjust fader with mouse I see the change in Console 1 and ReaperControl.
__________________
REGISTERED USER
My music, studio and bands

Last edited by Finnish; 03-29-2022 at 10:08 AM.
Finnish is offline   Reply With Quote
Old 05-09-2023, 09:51 AM   #68
djabthrash
Human being with feelings
 
Join Date: Dec 2018
Location: Paris (France)
Posts: 155
Default

Hi !

- the links form the OP are broken. If there is a new thread maybe it would be a good idea to put it in the OP ?

- is there a way to see real time track meters with this ?
I'd love to do real-time metering of my Reaper tracks with my android phone.
djabthrash is offline   Reply With Quote
Old 05-09-2023, 11:34 AM   #69
GeckoLikesMartini
Human being with feelings
 
Join Date: Jun 2016
Posts: 127
Default

Hi djabthrash,

For a long time the future of Liine Lemur wasn't clear. That's why there is now a version for Open Stage Control:

https://openstagecontrol.discourse.g...e/946?u=wombat

The OSC template is also free and you can change and enhance it as you like.

New Reaper thread: https://forum.cockos.com/showthread.php?t=245876

Regards, mj
GeckoLikesMartini is offline   Reply With Quote
Old 05-09-2023, 11:13 PM   #70
djabthrash
Human being with feelings
 
Join Date: Dec 2018
Location: Paris (France)
Posts: 155
Default

Quote:
Originally Posted by GeckoLikesMartini View Post
Hi djabthrash,

For a long time the future of Liine Lemur wasn't clear. That's why there is now a version for Open Stage Control:

https://openstagecontrol.discourse.g...e/946?u=wombat

The OSC template is also free and you can change and enhance it as you like.

New Reaper thread: https://forum.cockos.com/showthread.php?t=245876

Regards, mj
Thank you !
djabthrash is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 03:51 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.