Jump to content

sergedaigno

Members
  • Posts

    54
  • Joined

  • Last visited

Posts posted by sergedaigno

  1. 15 hours ago, jackson white said:

    All editions (Windows): Fix for a VST3-only plug-in scaling issue in Steinberg hosts when using supplementary application UI scaling settings

    Ha, I googled about it and it appears to be related to VST3 itself. thanks for the info.

    • Like 1
  2. 2 hours ago, abacab said:

    Does the VST2 version of that plugin have the same issue?

    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.

    1817471233_Screenshot2022-11-25162930.png.81e58579fb738f6b1b057a550a5ad077.png554014323_Screenshot2022-11-25162835.png.2f3fb3f23462ea0dcfe730dd53c293f4.png624813757_Screenshot2022-11-25085917.png.3fea0906240f8d54809b74a3eeca4fbf.png

  3. 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?

    Screenshot 2022-11-24 160732.png

  4. 31 minutes ago, David Baay said:

    I think he means show empty lanes for common/preferred controllers when they do not yet exist in the track/clip so you can just start drawing without having to add a lane of the desired type.

    192578339_Screenshot2022-10-09125511.png.cda5e7075c58d2c5bfed0c2e4772e6d0.png

    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.

     

    • Thanks 1
    • Great Idea 1
  5. 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))  ;

  6. ;; _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
      ))
    )

  7. 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 :)

    • Like 1
  8. 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 :)

     1827382977_Screenshot01.png.13b5d9b8fdbfa39486572193b27b7946.png2004163366_Screenshot02.png.a2bdd2dfb395f741ad483c359952a65b.png

    • Thanks 1
  9. 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)
    )

     

  10. On 2/13/2021 at 11:20 AM, razor7music said:

    @sergedaigno

     I'm having a little bit of trouble with the retune feature playing the original pitch along with the retuned pitch and wondered if you figured out a workaround.

     

    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. 

     

×
×
  • Create New...