MIDI (Musical Instrument Digital Interface) is a protocol used to allow music hardware, software and other equipment to communicate with each other.
0
votes
1answer
24 views
rtmidi library (C++) cannot find LoopBe MIDI port
I'm trying to use RtMIDI to handle MIDI input.
On my machine I have set up the LoopBe1 internal MIDI port.
The RtMIDI code I am using is as follows (and is basically demo code off the RtMIDI site).
...
0
votes
0answers
25 views
How can i assign static RtMidi callbacks object wise?
i'm using the C++ RtMidi library to read MIDI input from two identical devices (Novation launchpad).
Both launchpads 'live' in their own object, open their own MIDI port and (should) have their own ...
3
votes
0answers
26 views
MIDI beat clock in Java
I'm creating a drum machine and I'm having some problems with outputting MIDI beat clock.
For simplicity, I've set the internal clock to run by calling Thread.sleep(_time), where _time is the amount ...
1
vote
1answer
32 views
MIDI beginner - need to play one note
I don't know very much about Java's MIDI function. In fact, it utterly bewilders me. what I'd like to do however is just build a simple application that will play one note.
How to play a single ...
0
votes
1answer
21 views
Closing InputStream for MIDI
When should one close an InputStream that was passed as a parameter to the MIDI Sequencer?
Does it get closed automatically when Sequencer.close() is called, or should I close the input stream once it ...
1
vote
0answers
22 views
Non-stable MIDI timing clock output
I'm trying to make a sequencer that will act as master clock for other devices.
I've managed to get the sync timer up and running and controlling a DAW with it.
However, the tempo is very unstable ...
0
votes
0answers
27 views
Treating a 3D array like a list, adding entries at given positions
I have a block of code that is designed to decode MIDI files into a 3D array.
The first dimension (size 3) holds voice data in slot 0, note data in slot 1, and volume data in slot 2.
The second ...
1
vote
1answer
26 views
Map MIDI notes to waves files?
I'm using NAudio to play MIDI files in my .NET project.
I want to play some MIDI tracks (drum loops particularly) so each sound maps to a certain wav or mp3 file. Is that possible?
I'm new to MIDI ...
1
vote
0answers
32 views
Pygame music queue
So this is a question that may not have a nice answer. Basically I would like to know if it is possible to use the queue in pygame.mixer.music to play multiple tracks immediately one after another. ...
1
vote
0answers
15 views
How to transmit sound from Synthesizer to sequencer
Okay, this is my first question here so go easy on me guys. I'm trying to generate sound on the fly using the noteOn in the MidiChannel class with the internal Java Synthesizer. It produces sound ...
0
votes
0answers
21 views
Installing PortMidi for Cygwin in Windows 7
I'm having some difficulty getting PortMidi for work on Windows. More accurately, I'm having difficulty finding any documentation on how to get PortMidi to work in Windows, since I'm not using ...
0
votes
2answers
47 views
Convert midi to mp3
I have got one midi file and i want to play that file on web page, currently i am using midi.js player for playing but it is not working on mobile browsers.
Please guide me how to play that file or ...
0
votes
2answers
38 views
Create mp3 from binary file
I have got one midi file, converted it into binary
Know i want to make a mp3 using that binary how can i do it.
i am using php as my scripting language
here is my code using which i am ...
0
votes
1answer
48 views
Play midi files using chrome
I am using embed player for playing midi files.
It is playing in mozilla and in explorer how can i play that midi files in chrome, is there any extension or plugin by which i can play midi in chrome.
...
0
votes
0answers
19 views
java setTickPosition fail
Im using a midi write file code for create midi files. After I made the file I want make a playback loop using setTickPosition method but the loop dosn't work. The tick position is fine but the sound ...
0
votes
1answer
20 views
MidiSystem.getReceiver() freezes up JFrame
I'm making a program that involves playing MIDI sounds, and just today I encountered a problem where calling
MidiSystem.getReceiver()
or opening up a MidiDevice, totally prevents me from making a ...
1
vote
1answer
18 views
Automatic segmenting of MIDI file into phrases for dataset
I am doing some research that involves first building a dataset of short musical phrases. Ideally, this would be done based on some machine learning algorithm to guess the structure of the music and ...
1
vote
2answers
85 views
Tips on implementing a simple drum machine in QT (C++) [closed]
I'm due to hand in a project for my Computer Programming class at University around July/September (probably September), unfortunately the class itself is quite lacking (2 hrs/week, and only 7 weeks ...
-2
votes
1answer
38 views
convert midi to mp3 using php script [closed]
I want to convert midi file to mp3 or any format(ogg, wav, wma) using php or any other scripting language.
let me know if there is any way to do it.
Or tell me how these links are working:
a link
...
1
vote
0answers
89 views
Java Midi - How To Create Midi Events / Record from Java Synth to Java Sequencer?
I will start off by explicitly stating my main question: what is the correct way to create midi events with the correct 'tick' from ShortMessages with the correct microsecond position when using the ...
0
votes
0answers
40 views
Extract percussions instruments from the soundfont of Android
I'm currently working on a drum machine on Android, and up until now the development has not been a problem. I wrote a class that generates MIDI files based on what the user wrote on the sequencer.
...
1
vote
1answer
39 views
User Mode Virtual Midi Cable Driver
I 'm looking for a way to create a user mode virtual midi cable driver.
Unfortunately there's nothing at MSDN, and in the MSDN forums I asked nobody is sure about how it should be implemented.
...
0
votes
0answers
51 views
CoreMidi: MusicSequence/MusicPlayer inaccurate timing - Sample Project included
I added 5 notes to a MusicSequence. They have all the same paramters (note: 60, velocity 100, channel 0) except the timestamps:
1) timestamp: 0.0
2) timestamp: 0.05
3) timestamp: 0.07
4) ...
0
votes
1answer
56 views
Android. MIDI. Playing first N notes
I'm writing an app, that plays MIDI files. Is there any chance to play only N first notes (say 5) of MIDI file?
Thanks in advance!
Code example snippets would be great!
0
votes
2answers
67 views
Control Ableton Live tempo from MaxMSP
My question is firstly- is midi cc information integer only? i.e. 0 - 127 but not 5.55
The reason I ask is that I'm trying to control the tempo in Ableton Live from MaxMSP.
I found out that midi-cc ...
0
votes
0answers
13 views
PortMidi: Host Error
I have been writing programs using MIDI and they have been working fine.
All of a sudden, when I run a program (which compiles without problems) is states
PortMidi: 'Host Error' in the terminal ...
1
vote
1answer
156 views
MIDI Over Bluetooth
I'm starting a project featuring a wireless MIDI connection over Bluetooth.
As far as I know, there is no MIDI profile defined in the BT specification.
I was wondering if some of you would be ...
0
votes
1answer
30 views
How would I convert a MIDI file into a string?
I am a coding newb (although I code Expression 2 in a game called Garry's Mod), and I need some help.
I am trying to convert MIDIs into a string for a mickey-mouse coding language called Expression ...
0
votes
0answers
15 views
Have midi slider “click” different positions on screen
I have a slider on a midi input. I'd like to have the slider click different locations on the screen in a range of say pixel 100x300-100x500. Sudo code below
IF(
Slider = lowest position
)
THEN(
...
3
votes
1answer
54 views
Newer version of JRE doesn't load soundbank but older version does
I have the following code that tries to load a soundbank. I've tested the code on Windows 7 with JRE 1.6.03 and 1.6.43. The old version of the JRE (1.6.03) works fine but the new version throws an ...
0
votes
1answer
31 views
Getting MIDI Channel from midistatus
I know this should be easy but...
I'm trying to get the MIDI channel number from a midiStatus message.
I have MIDI information coming in:
MIDIPacket *packet = (MIDIPacket*)pktList->packet;
...
0
votes
0answers
39 views
NAudio - Playing back MIDI from Stream
I'm making a game and using NAudio to play back sounds. I want to play a MIDI file for music looping in the background. Having searching for it in the documentation, found nothing.
How can I play a ...
0
votes
1answer
78 views
How to make MusicDeviceMIDIEvent in MusicDevice.h respond to note durations?
I'm trying to make a melody using the following code. The problems is trying to
make the sequence play the rhythmic values in the rhythmArray. I basically want to play the note, and the velocity for ...
1
vote
2answers
66 views
Looping background MIDI file in a webpage
I never thought, I'd have to ask THIS question:
Is there a cross-browser way to play background MIDI files in a website without the need for a plugin?
(Now, please don't answer with "don't do it! ...
3
votes
1answer
101 views
How to read a percussion note value in C# using the Midi dot net class
I'm developing a VB.net app which needs to read the MIDI note value from an external drum pad which sends values on channel 10. This value will be used to control various aspects of my app.
I'm ...
0
votes
2answers
148 views
Playing note with pygame.midi
I'm trying to play a sound with the pygame.midi module. Here is the code I
use :
#!/usr/bin/env python
import pygame.midi
import time
pygame.midi.init()
print pygame.midi.get_default_output_id()
...
1
vote
0answers
86 views
Reading piano notes on Python
I have a piano that I plug into my computer, and basically I would like to be able to see which notes are played on the piano via Python. I've looked into pygame.midi, and python basically recognizes ...
1
vote
0answers
31 views
Create MIDI Program
I am trying to get some codes from my PC to a Roland BK7M Backing Module to carry out a program change. For all Roland Midi messages there are three codes necessary and for my program change they are ...
1
vote
1answer
104 views
Sending MIDI SysEx messages with the Arduino?
I would like to send a MIDI SysEx message like this to my Roland JX8P Synth.
F0 41 36 06 21 20 01 22 1B F7
This message would alter the VCF cutoff frequency of the synth. 1B is a variable ...
0
votes
1answer
65 views
I'm stuck with a simple MIDI program
well - my goal is to write a simple (console) program like this :
1.) get MIDI message from MIDI Input
2.) modifiy message (or add messages)
3.) write message to MIDI output
Since I am completely ...
0
votes
0answers
29 views
MIDI java Input keyboard [duplicate]
I was looking for questions that may have answer for my question, but I couldn't find anything helpful. Here's what I wanna do: I play a note on a midi keyboard and then a java program shows the note ...
0
votes
0answers
51 views
Writing to a MIDI port in Python and Mac Lion
Now it's been like 3 days and I still don't manage. Maybe someone can help.
I want to send a control command to a midi device, via python, on a mac. Everywhere I see, the happy answer is to use ...
1
vote
0answers
56 views
How to speed up the VirMIDI (MIDI) ports detection and the sequencer creation by java on Linux
I installed the snd-virmidi kernel module in order to have Virtual MIDI ports in java. Thanks to these MIDI ports, java can connect non-java MIDI software synthesizer on Linux.
But, openjdk takes a ...
1
vote
1answer
48 views
Combining bytes while excluding MSb in MIPS
In MIPS Assembly language, how do I combine only the 7 rightmost bits of bytes? For example, if I have 1001 1100 and 0110 1100, combining them while disregarding their most significant bit would be ...
1
vote
0answers
29 views
Java - could not fetch clipboard data (midi) from CakeWalk
I am trying to get clipboard data (in windows) which were "copied" from CakeWalk midi editor. They are visible in clipboard viewers and could be pasted into other programs, but I could not get them in ...
0
votes
1answer
85 views
How to write Output of AUGraph to an External AudioFile of WAV or AIF formats?
In my iOS app i am playing a MIDI file using Music Player & Music Sequence. And i'm getting AUGraph here by calling "MusicSequenceGetAUGraph" method of the Music Sequence.
Now i want to save the ...
0
votes
0answers
56 views
CoreMIDI: Adding an ID to MIDINoteMessage
I'm currently using a MusicPlayer to play back a MusicSequence and send the MidiPackets to a MidiReadProc.
I'm adding MIDINoteMessages to my MusicSequence.
The MidiReadProc shows 3 bytes per ...
2
votes
1answer
127 views
Receiving only 7 bits reading serial port midi bytes c++
G'day!
I want to send midi bytes to C++ through serial. I'm already receiving data. The only problem is that I only receive 7 bits and if I try to get 2 bytes the bits doesn't make sense. The range ...
2
votes
1answer
41 views
How to get MIDI instrument model from device ID code?
Is there any public database that allows to get the model name from the device ID code (returned in reply to the f0 7e 7f 06 01 f7 SysEx) ?
3
votes
1answer
152 views
MIDI synthesis in iOS misbehaving WRT pitch bending: LSB ignored
Either there's a serious bug in Apple's MIDI synthesis code, or I'm doing something wrong. Here's my understanding of it. When you send a pitch bend MIDI command, the range of the bend is -8192 to ...



