Получите миди-вход с помощью javax.sound.midi - PullRequest
0 голосов
/ 24 июня 2018

Я хотел бы иметь программу, которая могла бы что-то делать, когда он получает миди-ввод.

Например, когда я нажимаю кнопку 1 на моем контроллере, она должна вывести «Вы нажали btn 1», а когда я нажимаюкнопка 2 должна вывести «Вы нажали btn 2».

Я пытался использовать библиотеку javax.sound.midi, но все примеры на форумах или на YouTube не работали.

Это сработало больше всего для меня.Он распечатал все устройства Midi моего компьютера, но ничего не получил.Кто-нибудь может помочь?

package de.snke.dev;

import javax.sound.midi.*;;



public class Main  extends Object implements Receiver{

static MidiClass myMidi;

public static void main(String[] args) throws Exception {

    MidiDevice.Info[] info =
             MidiSystem.getMidiDeviceInfo();

            for (int i=0; i < info.length; i++) {
             System.out.println(i + ") " + info[i]);
             System.out.println("Name: " + info[i].getName());
             System.out.println("Description: " +
             info[i].getDescription());

             MidiDevice device =
            MidiSystem.getMidiDevice(info[i]);
             System.out.println("Device: " + device);
            }

}

public void send(MidiMessage msg,
        long time) {
        System.out.println("Received message " + msg);
        }

        public void close() {
        System.out.println("Closing");
        }
}

РЕДАКТИРОВАТЬ: Теперь у меня есть

Sequencer           seq;
Transmitter         seqTrans;
Synthesizer         synth;
Receiver         synthRcvr;
try {
      seq     = MidiSystem.getSequencer();
      seqTrans = seq.getTransmitter();
      synth   = MidiSystem.getSynthesizer();
      synthRcvr = synth.getReceiver(); 
      seqTrans.setReceiver(synthRcvr);      
} catch (MidiUnavailableException e) {
      // handle or throw exception
}

Теперь я подключен к моему APC Mini?Извините, я новичок ... Если да, то как я могу теперь прочитать ввод миди?И если нет, что я должен изменить?

1 Ответ

0 голосов
/ 25 июня 2018

Решение:

package de.snke.dev;

import javax.sound.midi.*;
import java.util.ArrayList;
import java.util.List;
import java.io.*;

public class Main
{

public void Main()
{
    MidiDevice device;
    MidiDevice.Info[] infos = MidiSystem.getMidiDeviceInfo();
    for (int i = 0; i < infos.length; i++) {
        try {
        device = MidiSystem.getMidiDevice(infos[i]);
        //does the device have any transmitters?
        //if it does, add it to the device list
        System.out.println(infos[i]);

        //get all transmitters
        List<Transmitter> transmitters = device.getTransmitters();
        //and for each transmitter

        for(int j = 0; j<transmitters.size();j++) {
            //create a new receiver
            transmitters.get(j).setReceiver(
                    //using my own MidiInputReceiver
                    new MidiInputReceiver(device.getDeviceInfo().toString())
            );
        }

        Transmitter trans = device.getTransmitter();
        trans.setReceiver(new MidiInputReceiver(device.getDeviceInfo().toString()));

        //open each device
        device.open();
        //if code gets this far without throwing an exception
        //print a success message
        System.out.println(device.getDeviceInfo()+" Was Opened");


    } catch (MidiUnavailableException e) {}
}


}
//tried to write my own class. I thought the send method handles an MidiEvents sent to it
public class MidiInputReceiver implements Receiver {
public String name;
public MidiInputReceiver(String name) {
    this.name = name;
}
public void send(MidiMessage msg, long timeStamp) {


    byte[] aMsg = msg.getMessage();
    // take the MidiMessage msg and store it in a byte array

    // msg.getLength() returns the length of the message in bytes
    for(int i=0;i<msg.getLength();i++){
        System.out.println(aMsg[i]);
        // aMsg[0] is something, velocity maybe? Not 100% sure.
        // aMsg[1] is the note value as an int. This is the important one.
        // aMsg[2] is pressed or not (0/100), it sends 100 when they key goes down,  
        // and 0 when the key is back up again. With a better keyboard it could maybe
        // send continuous values between then for how quickly it's pressed? 
        // I'm only using VMPK for testing on the go, so it's either 
        // clicked or not.
    }
    System.out.println();
}
public void close() {}
}
}

Это двухпоточные решения, объединенные для открытия всех устройств midi и печати их скорости, значения ноты и статуса (нажата или нет)

Ине забывайте!

Вы должны вызвать

Main main = new Main();
main.Main();

в отдельном классе, чтобы запустить метод Main в классе Main.

...