Old 01-15-2017, 12:37 PM   #41
Teddy
Human being with feelings
 
Join Date: Sep 2011
Posts: 198
Default

Quote:
Originally Posted by G-Sun View Post
Seems like much is possible with web-interface.

But,
I can't see:
- Preroll options
- Rec-mode

These would be very handy to see/control from interface

Would like to see these added beside transport in something like index.html,
and value input for fader (as they are hard to operate.
Pan: L-C-R would cover most of my needs.
I'm pretty sure you can add them with reascript and external state. Value input for fader is already implemented, but I haven't seen anyone using it.

@X-Raym
It's pretty cool, but when the backend relies on polling and not sending out changes as they happen, it can never be as smooth as a real controller. I never hoped for an online daw as some other people wanted, but I had hoped to be able to read and write automation smoothly with correct timing. Ah well. Guess you can't have it all. It is a cool feature.

Good work on the docs!
Teddy is offline   Reply With Quote
Old 01-15-2017, 01:03 PM   #42
G-Sun
Human being with feelings
 
G-Sun's Avatar
 
Join Date: May 2010
Location: Norway
Posts: 7,318
Default

Quote:
Originally Posted by Teddy View Post
I'm pretty sure you can add them with reascript and external state. Value input for fader is already implemented, but I haven't seen anyone using it.
Ok
Lot's of stuff in main.js it seems.
__________________
Reaper x64, win 11
Composer, text-writer, producer
Bandcamp
G-Sun is offline   Reply With Quote
Old 01-15-2017, 07:25 PM   #43
X-Raym
Human being with feelings
 
X-Raym's Avatar
 
Join Date: Apr 2013
Location: France
Posts: 9,875
Default

@Teddy
Yep, that too bad... but there is still osc, mackie control or midi controller for that :P

For me it only miss
  • a way to show track color
  • a way to hide track that have hidden TCP
This can put the link between the interface and REAPER a bit further


I try to mod that but it is a bit more complicated than expected.

Edit: I already put the doc online :P
https://github.com/ReaTeam/ReaScript...face_moding.md
X-Raym is offline   Reply With Quote
Old 01-16-2017, 03:35 AM   #44
Teddy
Human being with feelings
 
Join Date: Sep 2011
Posts: 198
Default

Quote:
Originally Posted by X-Raym View Post
For me it only miss
  • a way to show track color
  • a way to hide track that have hidden TCP
Isn't track colors already implemented? Not in my interface of course. But in main.js? I think I saw it in a pre earlier...

The missing hidden tracks functionality is a serious oversight, I agree...
Teddy is offline   Reply With Quote
Old 01-16-2017, 10:25 AM   #45
X-Raym
Human being with feelings
 
X-Raym's Avatar
 
Join Date: Apr 2013
Location: France
Posts: 9,875
Default

@teddy
Yep, track color is return by the TRACK request, but it is not integrated in the web interface.: you don't SEE the track color. A custom JS code need to be written to color track background accordingly. My first attempt added an extra 10pixel wide cell at the end of the table, it was pretty nice but for some reason, it needed to refresh the page to refresh the colors if they changed.
Just some javascript logic to correct I suppose, but I already have the code to convert the REAPER color format to hex

Quote:
var number = 16831771;

function argbToRGB(color) {
return '#'+ ('000000' + (color & 0xFFFFFF).toString(16)).slice(-6);
}

var retval = argbToRGB(number);
X-Raym is offline   Reply With Quote
Old 01-16-2017, 10:45 AM   #46
karbomusic
Human being with feelings
 
karbomusic's Avatar
 
Join Date: May 2009
Posts: 29,260
Default

Quote:
Originally Posted by cyrano View Post
Damned.

I was already dreaming about working with several people on the same project. Imagine one person writing notes for MIDI, while someone else is editing audio...
Is this feature straight up http or is it going to use something super cool like websockets? Something, I'm planning on getting into (outside of Reaper) Here's an oscilloscope over the wire, 2ms latency. At minimum, Justin might have a good time playing with the idea.

https://www.youtube.com/watch?v=8ISbmQTbjDI
__________________
Music is what feelings sound like.
karbomusic is offline   Reply With Quote
Old 01-16-2017, 12:28 PM   #47
cyrano
Human being with feelings
 
cyrano's Avatar
 
Join Date: Jun 2011
Location: Belgium
Posts: 5,246
Default

Well, I don't know Karbo. I mean, it's not me providing the code, is it? But yeah, websockets seem appropriate. And anything else that lowers latency, I guess.
__________________
In a time of deceit telling the truth is a revolutionary act.
George Orwell
cyrano is offline   Reply With Quote
Old 01-16-2017, 02:27 PM   #48
karbomusic
Human being with feelings
 
karbomusic's Avatar
 
Join Date: May 2009
Posts: 29,260
Default

Quote:
Originally Posted by cyrano View Post
Well, I don't know Karbo. I mean, it's not me providing the code, is it?
I meant do we know/assume collectively if the Reaper feature was garden variety http (I assume it is but I should read more about it LOL) so my point was web sockets as demonstrated in the video might be fun in a similar context down the road due to the extreme low latency comparatively. Every time I see that vid, I can't help but think of Reaper's web interface working in a similar fashion some day.
__________________
Music is what feelings sound like.

Last edited by karbomusic; 01-16-2017 at 02:33 PM.
karbomusic is offline   Reply With Quote
Old 08-13-2017, 06:07 PM   #49
lexaproductions
Human being with feelings
 
Join Date: Jan 2013
Posts: 1,126
Default

Hey Guys,
Did anybody ever got the track color thing happening?
lexaproductions is offline   Reply With Quote
Old 08-14-2017, 10:51 AM   #50
Teddy
Human being with feelings
 
Join Date: Sep 2011
Posts: 198
Default

Quote:
Originally Posted by lexaproductions View Post
Hey Guys,
Did anybody ever got the track color thing happening?
Just take a look at the official script. It's in there. Don't think there's much work to edit my script either, but I don't work on it anymore. You are more than welcome to do it though...
Teddy is offline   Reply With Quote
Old 08-14-2017, 11:18 AM   #51
lexaproductions
Human being with feelings
 
Join Date: Jan 2013
Posts: 1,126
Default

It is far over my competences to implement this on your script. But I really like the fact that your script is a "full mixer" view. That's why I'd like to use it.

But I have no clue where to start to get the track colors happening...
lexaproductions is offline   Reply With Quote
Old 11-17-2020, 01:59 PM   #52
ReaNico
Human being with feelings
 
ReaNico's Avatar
 
Join Date: Jun 2016
Posts: 114
Default

I don't understand how to install it
ReaNico is offline   Reply With Quote
Old 11-18-2020, 05:06 AM   #53
mschnell
Human being with feelings
 
mschnell's Avatar
 
Join Date: Jun 2013
Location: Krefeld, Germany
Posts: 14,688
Default

Select one from preferences -> Control/OSC /Web, and you will be guided
-Michael
mschnell is online now   Reply With Quote
Old 11-18-2020, 11:32 AM   #54
ReaNico
Human being with feelings
 
ReaNico's Avatar
 
Join Date: Jun 2016
Posts: 114
Default

Quote:
Originally Posted by mschnell View Post
Select one from preferences -> Control/OSC /Web, and you will be guided
-Michael
Only have this options
Attached Images
File Type: png Sin títuloasdad.png (2.7 KB, 196 views)
ReaNico 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 04:30 PM.


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