I was wondering how do i convert the 14 bit midi pitch bend values
so basically if i have the 14 bit value 8192 (no bend)
how do i express that in the MIDI 0-127 in both the LSB and MSB
?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The high 7 bits are the msb and the low 7 bits are the lsb (this is C syntax but I think Java is the same, right?):
So for your value 8192 (0x2000), the msb is 0x40 and the lsb is 0x00.