-
Posts
4,170 -
Joined
-
Last visited
-
Days Won
14
Everything posted by Promidi
-
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.
-
Are both “MIDI Event Chase on Play” and “Include Note Events” selected?
-
Form the electronic keyboard, do you wish to record the MIDI performance or the actual audio?
-
If you are worried about the 250 mb space the core Cakewalk program files take, then it’s time to upgrade your system drive.
-
Editing slowed down but appears to only happening on only one track
Promidi replied to Tiffany Prochera's question in Q&A
Instrument tracks can still have CC Events.- 5 replies
-
- editing clips
- slow
-
(and 1 more)
Tagged with:
-
Editing slowed down but appears to only happening on only one track
Promidi replied to Tiffany Prochera's question in Q&A
Is this a MIDI track with lots of CC, (or more rarely, even RPN or NRPN) events?- 5 replies
-
- editing clips
- slow
-
(and 1 more)
Tagged with:
-
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.
-
What is the exact model of your “four fader midi controller”?
-
As per title. https://www.meldaproduction.com/downloads
-
I would if I could. However, on my PC, Korg Software Pass just drops to desktop. Even Korg Support is stumped.
-
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
-
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.
-
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.
-
Keyboard shortcuts to jump measure by measure?
Promidi replied to T Boog's topic in Cakewalk by BandLab
Search for “Go to start of” and “Go to end of” in Global Bindings. -
Keyboard shortcuts to jump measure by measure?
Promidi replied to T Boog's topic in Cakewalk by BandLab
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. -
What I would have tried before doing the System Restore is uninstall and reinstall the latest Vdist runtimes or even reinstall CbB.
-
My project shuts down and then disappears from the screen
Promidi replied to Nathaniel Joseph's question in Q&A
Because there is an issue somewhere that is preventing it from staying open. -
Maybe this will help Adding Expression pedal to Amplitude 5
-
Audio Playback Breaking /Stuttering. Please Help..
Promidi replied to Yunandi Setiawan's topic in Cakewalk by BandLab
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. -
CAL script for removing same event type on same tick?
Promidi replied to quattj's topic in Cakewalk by BandLab
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