Jump to content

Promidi

Members
  • Posts

    4,170
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Promidi

  1. I just duplicated a SIT (Simple Instrument Track) and the synth was also duplicated - ie a duplicate instance of the synth was created in the synth rack.
  2. That's what I paid for it on another sale. Then it was buggy as hell - I could regularly make it lock up. Fortunately, the devs fixed it after I reported the issue.
  3. Are both “MIDI Event Chase on Play” and “Include Note Events” selected?
  4. Form the electronic keyboard, do you wish to record the MIDI performance or the actual audio?
  5. If you are worried about the 250 mb space the core Cakewalk program files take, then it’s time to upgrade your system drive.
  6. Is this a MIDI track with lots of CC, (or more rarely, even RPN or NRPN) events?
  7. To clarify. By “bandlab”, do you mean the web version or the Windows desktop DAW “Cakewalk by Bandlab”?
  8. I am not seeing anything on there that would be sending when the unit is not being touched. Are the CC messages being sent to CbB the same as what any of the sliders are programmed to send when moved? As mentioned, maybe the sliders need a bit of a clean.
  9. What is the exact model of your “four fader midi controller”?
  10. As per title. https://www.meldaproduction.com/downloads
  11. I would simply write a CAL script to do this. Maybe even set a keybinding to this CAL script. (do (forEachEvent (= Event.Chan 0)))
  12. I would if I could. However, on my PC, Korg Software Pass just drops to desktop. Even Korg Support is stumped.
  13. I am going to assume you are using the latest drivers for the MOTU MIDI Express https://motu.com/en-us/download/#category=2&product=17
  14. What MIDI mode are you using? MME or UWP Is the MOTU micro express plugged direct or via a USB hub . If a hub, make sure it's powered. Personally, I would only use direct, not any HUB (even powered). Try a different USB port. Also, do any of your projects have any SYSEX banks or data that gets sent upon open. Maybe these are overwhelming your MOTU.
  15. Use a synth that allows ASDR to be mapped to amplitude. Set the sustain to a lower value than the maximum. Set the Attack, Decay and Release time to taste.
  16. Search for “Go to start of” and “Go to end of” in Global Bindings.
  17. You can also create a custom keybinding to do this. I have simply set the left and right cursor keys to move back and forward measure by measure.
  18. What I would have tried before doing the System Restore is uninstall and reinstall the latest Vdist runtimes or even reinstall CbB.
  19. Because there is an issue somewhere that is preventing it from staying open.
  20. Maybe this will help Adding Expression pedal to Amplitude 5
  21. Reinstalled your drivers for your audio interface drivers (Use manufacturers website to check for latest - not Windows Update) What sample rate, bit depth and buffer size are you using? Is your PC fully patched (or completed all updates - including final reboot)? What plugins are you using. My PC is configured as per my signature and I am not having this issue.
  22. I have created a CAL script that removes controller events that are of the same number AND that are are less than 15 ticks than the first of selected controller events. It also removes controller events that are of the same controller number AND that are the same values. (do (int resolution 15) (long Previous_test_time) (int Previous_CC_Value) (int can_delete 1) (long first_time) (long last_time) (int cc_index 1) ;find first CC Value and its time (forEachEvent (if (== Event.Kind CONTROL) (if (== cc_index 1) (do (= first_time Event.Time) (= Previous_CC_Value Control.Val) (++ cc_index) ) (= last_time Event.Time)))) ;thin out (= Previous_test_time first_time) (forEachEvent (do (= can_delete 1) ;assume can delete (if (|| (== Control.Val 0) (== Control.Val 127)) (= can_delete 0)) (if (== Control.Val 63) (= can_delete 0)) (if (|| (== Event.Time first_time) (== Event.Time last_time)) (= can_delete 0)) (if (&& (== Event.Kind CONTROL) (== can_delete 1)) (if (<= (- Event.Time Previous_test_time) resolution) (do (if (&& (!= Event.Time first_time) (!= Event.Time last_time)) (delete) ); enf if ); End do (do (= Previous_test_time Event.Time) );end do );end IF ); end if );end do );end for (forEachEvent (do (= can_delete 1) ;assume can delete (if (|| (== Event.Time first_time) (== Event.Time last_time)) (= can_delete 0)) (if (&& (== Event.Kind CONTROL) (== can_delete 1)) (if (== Control.Val Previous_CC_Value) (do (delete) );end do (do (= Previous_CC_Value Control.Val) );end do );end if );end if );end do ); end for );end do
×
×
  • Create New...