Jump to content

Indrajeet Raval

Members
  • Posts

    8
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. import mido # Define MIDI port name (adjust as necessary) port_name = 'Digital Piano 1' # Open MIDI output port output_port = mido.open_output(port_name) # Define MIDI channel (1-16) channel = 0 # Note: MIDI channels are zero-indexed, so channel 1 corresponds to index 0 # Define Control Change message for volume (CC #7) volume_cc = 7 # Define volume value (0-127) volume_value = 1 # Adjust as needed print("Available MIDI output ports:") for port_name in mido.get_output_names(): print(port_name) # Create Control Change message for volume on the specified channel volume_message = mido.Message('control_change', channel=channel, control=volume_cc, value=volume_value) # Send the Control Change message output_port.send(volume_message) # Close MIDI output port output_port.close() OUTPUT: PS C:\Users\P125ab> python main.py Available MIDI output ports: Microsoft GS Wavetable Synth 0 Digital Piano 1 When I executed above code and pressed Yamaha digital piano P125ab keys, master volume wasn't changed at all. The same thing I can do if I connect Smart Pianist App. Open Balance Window at the bottom and move slider up and down to change master volume in android app. If I press any digital piano keys, as per fader the sound will come from digital piano. Is above code enough to test master volume? Or what else should be done to achieve the same functionality. Thanks, Indrajeet Raval
  2. Yamaha P125a (192-Polyphony, GHS), Korg D1 (120, RH3) & Roland FP-30x (256, PHA-4 with Esc). Each model has different Polyphony, will it affect the sound of VSTs (PianoTeq or Zenology Pro, & it's setting allows from 64 to Unlimited Polyphony) or not?
  3. These .ins instruments, which can be mapped in "Preferences-Instrument".
  4. Hello, Can I use cakewalk INS instruments in light weight vst and use in Gig Performer. Is it possible and through which vst. Thanks.
  5. I can bind and trigger column one by any single key on keyboard panel(Konbs/Faders) or black/white keys on keyboard also. But I want to trigger column based on chords(triads) on keyboard. When I press C-E-G, column one should be triggered, when I press G-B-D, column two, when I press F-A-C, column three, so on and so forth for other chords(triads). How to set Midi Learn for Chords(Triads) for Matrix View in Cakewalk in Bandlab.
  6. I need help for "Midi Learn" function in Matrix View. I can bind and trigger column one by any single key on keyboard panel(Konb/Faders) or black/white keys on keyboard also. But I want to trigger column based on chords(triads) on keyboard. When I press C-E-G, column one should be triggered, when I press G-B-D, column two, when I press F-A-C, column three, so on and so forth for other chords(triads). How to set Midi Learn for Chords(Triads) for Matrix View in Cakewalk in Bandlab.
  7. Thanks everyone. After a lot of google, I found the work around and it is Kontakt Player which is a free download from Native Instruments. Just install from NI website and drag an drop instance in the instrument track. Open Kontact Player and drag and drop as many different or same Instruments you want in Kontact Player. Set properties for each instrument like reverb etc. And then route all these instruments to same channel for ex: Channel 1 from drop down. Done. Layer as many instruments you want.
  8. Hello, I arranged the set of instrument inside folders(image attached). Now what I want is when I select Folder No 1 (Piano+String), it should play both the instruments simultaneously inside folder no 1 when I press keys on any music keyboard(Yamaha OR Roland OR any MIDI Keyboards). If I press laptop down arrow OR music keyboard Next button OR foot control pedal, it should select next folder which is Folder No. 2 (Violin+Vibro+Guitar). It should play all these three instruments together when I press keys on any music keyboard(Yamaha OR Roland OR any MIDI Keyboards). Please suggest me how to achieve above folder wise instrument playing in Cakewalk. I want to use above scenario in both situation recording and live band playing as well. Suppose I arm the folder no. 1, it should play and record, whatever instruments are inside folder no. 1 when I press keys on any music keyboard(Yamaha OR Roland OR any MIDI Keyboards). Now if I press laptop down arrow OR music keyboard Next button OR foot control pedal, it should disarm folder no. 1 and arm Folder No. 2 (Violin+Vibro+Guitar) for recording and playing when I press keys on any music keyboard(Yamaha OR Roland OR any MIDI Keyboards). Kindly show me the way to achieve in cakewalk. Thanks.
×
×
  • Create New...