Generative Midi, python, VCV

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 6

  • @sepulchre10
    @sepulchre10 2 ปีที่แล้ว +4

    Yes, I like all the detail you've put into this; scales (modes & intervals), progressions, etc. It's very well thought out. I'd like to see how you connected to VCV. I'm having problems figuring out Mido and RTMidi.

    • @try-restart
      @try-restart  2 ปีที่แล้ว +2

      MIDI-CV built in module for RACK. If your OS's audio engine has a built-in midi channel, use that, if not, you need an audio router like JACK.

  • @iNuchalHead
    @iNuchalHead 2 ปีที่แล้ว +1

    lol was a long walk, but glad it all panned out.

  • @chickenman7252
    @chickenman7252 ปีที่แล้ว

    Genius

  • @Dasrecord
    @Dasrecord ปีที่แล้ว

    tutorial request: python script that takes an input string "EXAMPLE", converts it to binary, maps the 1s and 0s to notes A3 and B3 in sequence, and spits out the .midi file

    • @xxlarrytfvwxx9531
      @xxlarrytfvwxx9531 ปีที่แล้ว

      def string_to_note(example):
      notes = []
      bin_list = [bin(chr(character))[2:] for character in example] # removes 0b prefix
      for byte in bin_list: # I can't remember if byte is a reserved keyword
      for bit in byte:
      note = "A3" if bit == "1" else "A3"
      notes.append(note)
      return notes