-
Posts
54 -
Joined
-
Last visited
Everything posted by sergedaigno
-
Ha, I googled about it and it appears to be related to VST3 itself. thanks for the info.
-
Submitted to Cakewalk and LiquidSonics support teams.
-
If it was the case others plugins would be defective, which are not. Also, it can be loaded into the Cantabile VST host without problems.
-
Yes. But you can, into properties/Compatibility, go to change Dpi settings window and uncheck the High Dpi scaling checkbox. The cost will be having a blurred Cakewalk window. Or you can set the scale display to 100% which will be applied to all applications.
-
Well, my Windows display is set to 125% and that's were the problem arise from. It should not of course as others plugins are fine at 125%.
-
Hello, For some reason their interface does not popup entirely. It's possible to remedy with a reset window workaround (like 100%, 75%, etc) , but unfortunately the settings button of Cinematic Rooms sits to the right side of the plugin and hence make it impossible to correct the situation. Suggestion, anybody?
-
Feature Request - About the Controller Lane Pane
sergedaigno replied to sergedaigno's topic in Feedback Loop
You open the PRV on track 1, you add some controllers on the left side, draw no events in the right pane, close the PRV and reopen it, everything is vanished. If you have many tracks, it's not handy and time consuming. -
Feature Request - About the Controller Lane Pane
sergedaigno replied to sergedaigno's topic in Feedback Loop
Yes, like having cc1 controller showing up by default on left side when the PRV is opened. With some libraries, many cc's may be involved in the making of a song. -
I don't know if it's already implemented but it would be cool to have a global settings where we could add default controllers into that list instead of always adding again and again into projects and tracks.
-
Looking for a VST that allows to hold on a note
sergedaigno replied to sergedaigno's topic in Instruments & Effects
As sjoens says, something like a switch, the Hold key of Virtual Control doesn't work that way? -
With Cantabile VSThost, it's possible to Hold the Ctrl key while pressing a note on keyboard and cause it to be held on. It's very useful with AS Sunbird as you can build guitar patterns in real time. Any idea, somebody ?
-
Create a Cal script which assigns a specific channel to note events into each track (forEachEvent (do (if (== Event.Kind NOTE)) (= Event.Chan 0)) ; any chosen channel )) you know then which note belongs to which track and can use into RemoveDupNotes.Cal, something like (if (== Channel Event.Chan)) ;
-
So, how are the sound and functionality as vst ? a good buy ?
-
;; _Legato.CAL, by Serge Daigno 2003 (do (int tbase 1) ; Or whatever you want, 2 for 480, 1 for 960 (dword FromTime 0) (dword ToTime 0) (int Found 0) (int setting 1) ; Or whatever you want, number of ticks cut before the next note (while (!= 4 Found) (do ;; For each actual Note event occurence, get the Event.Time (= Found 0) (forEachEvent (do (if (&& (== Found 0) (&& (== Event.Kind NOTE) (> Event.Time FromTime))) (do (= FromTime Event.Time) (= Found 1) )) ;; Find the next Note event occurence and get the Event.Time value (if (&& (== Found 1) (&& (== Event.Kind NOTE) (> Event.Time FromTime))) (do (= ToTime Event.Time) (= Found 2) )) )) ;; Return to the actual Note event and resize the note duration (forEachEvent (do (if (&& (== Found 2) (&& (== Event.Kind NOTE) (== Event.Time FromTime))) (do (= Note.Dur (- (/ (- ToTime FromTime) tbase) setting)) (= Found 3) )) )) (if (< Found 3) (= Found 4)) ;; Ending when last note is reached )) )
-
I think that would be innovative to enhance the arranger as a collaborative tool for musicians sharing BandLab files. Not only lyrics but also comments (and yes bigger fonts on more than a single line) would give an even more something special to BandLab
-
In the Event List, I double clicked on a Key aftertouch event to switch for an articulation event, then selected a channel into the articulation map, clicked on Ok, and bang, right in my face, without any warning, blazing fast, like a thunder, an out of memory message appeared ? I bet 2$ that is related to a memory something
-
Adding Controller to PRV...default to current Channel
sergedaigno replied to RobertWS's topic in Feedback Loop
I had to face this annoying problem, here is what I found to rechannel CC's, hope that helps. -
Hi, I revived an old sonar project having many CC11 events. When I open the PRV and the Controller pane, instead of all CC appearing in one chunk like the good old days, it's all scattered into different lanes like CC: 11-Expression (Chan 11), CC: 11-Expression (Chan 15), etc. Is there a way to put it back into only one piece? The problem is better explained here : Finally, here is a CAL workaround that merge all lanes into one. Channel is default to 0. ;; Expression_channel reset all found cc to 0 (do (int CC# 0) ; Choose Control Number (dword FromStart From) (getInt CC# "Controller " 0 127) (forEachEvent (do (if (&& (== Event.Kind CONTROL) (== Control.Num CC#)) (= Event.Chan 0)) )) (= From FromStart) )
-
Looking for Electric Guitar Solo Samples
sergedaigno replied to razor7music's topic in Instruments & Effects
Sorry to hear that. I only played with the demo version and never encountered such a problem. Have you tried to proceed clip by clip (one pitch = one clip), instead of doing it on one shot? As I understand, that Doppler problem seems to happen when you change the pitch while playing. -
One global and an one more for the Prv. Isn't it confusing? I guess so, at least for somebody who steps alternatively from the Track View to the Pvr.
-
Looking for Electric Guitar Solo Samples
sergedaigno replied to razor7music's topic in Instruments & Effects
Maybe something different like this could worth to check. Solos are somewhat baked but their elastic technology make it possible to rearrange them. https://www.ueberschall.com/products/instruments/electric guitar/2/releaseDate/28.en.html -
Showing only selected notes and other events would be a nice option to add to the Event List ?