Programming MIDI

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 233

  • @astrahcat1212
    @astrahcat1212 3 года назад +30

    HUGE thing to know: In the MIDI header is a value that gives you 'ticks per quarter note' and 'milliseconds per quarter note'. This is what you use to draw out MIDI note events visually. You also use 'Tempo' which is in microseconds, there are 60 million microseconds in a minute so you do 60 million / tempo = BPM and thats how you get the BPM of a song. You can then use ticks per quarter, bpm, milliseconds per quarter and get all the values you need to visualize from these.

  • @danielbuenrostro
    @danielbuenrostro 4 года назад +43

    This channel is a gold mine. Thank you for sharing!

  • @nicolasdelpuerto3324
    @nicolasdelpuerto3324 4 года назад +84

    This video made me as happy as when I discovered:
    * { box-sizing: border-box }

    • @_lapys
      @_lapys 4 года назад +6

      Ah, good old CSS
      html { box-sizing: border-box }
      html * { box-sizing: inherit }

    • @cube2fox
      @cube2fox 4 года назад

      @@_lapys Which is the advantage over the above?

    • @_lapys
      @_lapys 4 года назад

      @@cube2fox Not really an advantage but I do prefer when the box-sizing prop. of parent elements is inherited by child elements (same with other properties like font-family)

    • @cube2fox
      @cube2fox 4 года назад +1

      @@_lapys Makes sense if you need to disable border-box for a piece of included foreign code because it assumes normal box-sizing. E.g. a date picker.

  • @124mun
    @124mun 4 года назад +6

    You are doing an AMAZING job and i cant stress that enough. Trust me not everyone has the ability to teach sophisticated things that well. You are blessed sir. Thank you.

  • @AftercastGames
    @AftercastGames 4 года назад +24

    After spending months working on exactly this same code, I would like to note that none of the timing information (the delta time between events) is actually sent to the midi device. It is only stored in the midi file, and used by the sequencer to calculate “when” to send the event to the device. Just wanted to clarify. :)

    • @camaro24pl
      @camaro24pl 11 месяцев назад

      So why are DELTATIME intervals retained in this example?

  • @HealliesGames
    @HealliesGames 4 года назад +4

    Hi javidx!
    I want to thank you for your work, and congratulate you on your skills.
    I started my adventure with game development when I was a kid, but over time I appreciated software engineering too.
    This and the synthesizer videos are currently queued to be seen, as generation and modeling of the wave for sound fascinates me.
    I hope you can grow on the Internet, you deserve much more.

  • @MarceloFernandez-bb9tb
    @MarceloFernandez-bb9tb 4 года назад +2

    This is now number one, of my top chanels of all youtube for programing. Thanks for sharing your knowledge!!!

  • @cortexauth4094
    @cortexauth4094 4 года назад +9

    Some days ago I was looking some stuffs on MIDI and this came up today, pretty cool!

    • @javidx9
      @javidx9  4 года назад +14

      PixelGameEngine surveillance software working perfectly. Good Stuff!

  • @TheOleHermit
    @TheOleHermit 2 года назад

    Yes. I just completed a project using a Teensy 4.1 MCU + 3 audio shields to become a laser image synth, with 14 waveform generators, 4-1 X/Y mixers, 2 AM LFOs feeding multiplexers and RGB color modulation.
    IOW, it's a Laserium synth the size of a fist.
    Everything is controllable via usbMIDI with an custom mapped Akai ACP40 controller, Cakewalk's DAW, a 15" touchscreen, and/or Surface Pro tablet GUIs, created with Pure Data.
    Each Teensy Laser Synth is set to a unique MIDI channel, one for each projector. The DAW handles the outputs via Bus mixdowns.
    I'm no electronics engineer, software developer, nor musician. But, Laserium taught me all about working with cycloid imagery. Our pal, Dave, from Notes and Volts taught me everything I needed to know to transform my 30 year old dreams into modern reality.😎
    🤯 Lasers have ILDA files, but since my laser synth is MIDI controlled, I can also record live laser shows onto MIDI files, as well! That's a game changer.
    Thanks! 🙏

  • @ChainShinra
    @ChainShinra 4 года назад +4

    Haha, how I already knew the song @9:48 :D That "wait a moment..." feeling... and then seeing I was right. Nice selection! And nice video, as always!

  • @plateoshrimp9685
    @plateoshrimp9685 3 года назад +2

    There's a pervasive misconception in this video that took me a minute to understand. The delta time information is part of the event in the midi file, but it is not part of the midi message that is sent out. The time stamp tells the midi file player (or sequencer) when to send the message, but the midi protocol is fully asynchronous, messages can be sent any time and they are processed as they are received. This also relates to why midi bytes are mostly 7 bit values. It's not to conserve bandwidth, all 8 bits are sent, but the first byte of a message will have the high bit set to 1 so the receiving device knows this is the start of a midi message. The rest of the bytes in the message must have the high bit set to 0. Midi devices process midi messages as they are received, and they do not know or care who sent them or when. Imagine multiple midi instruments all receiving event messages and trying to comply with delta time stamps. They would need to all be in sync somehow. The midi protocol is designed specifically to avoid this problem.

  • @NickSBailey
    @NickSBailey 3 года назад

    Being a bit of a masochist I decided to write my own DAW but realised I only have an understanding of sending and receiving Midi messages and not so much the file structure of a typical midi file. This is great, the clearest explanation I've seen so far.

  • @verdgehirn5634
    @verdgehirn5634 4 года назад +4

    Tbh I wanted to train a neural network to make music for my game as Im not that good and you've came up with this, perfect timing :)

  • @Ashanmaril
    @Ashanmaril 3 года назад +2

    Great video, javid! It's been a very handy reference for a project I'm working on with midi files at the moment. During it I've actually ran into a small bug cause by some unhandled events in your code.
    There's a few extra meta events that you'll want to handle in certain midi files: metaProgramName (0x8), metaDevicePort (0x9), and metaMidiPort (0x21). For the first 2 you'll want to do a standard readString() with the length read in prior, but the midi port meta event you'd read in a single byte.
    I believe some meta events can also have delta time associated with them, meaning after we handle meta events, we need to pass in the delta time for these "other" events, and furthermore, the algorithm to convert the midi events into a series of notes needs to be tweaked to account for non-note events that have a time delta. An easy solution would be to check if an "other" event type has a time delta, and if it does, pass it onto the next event in sequence so this time isn't lost if any real note on/off events come in later.

  • @ric8248
    @ric8248 3 года назад +1

    Great video, yet again. I'd just like to add that the reason for treating a Note-On event with a value of 0 as if it were a Note-Off event was to take full advantage of the running status. This way, most of the messages in normal midi tracks would not need the status byte.

  • @PuraTvOyun
    @PuraTvOyun 4 года назад

    Hey javidx9.
    After couple of weeks it's great to see the new MIDI video. I almost finished my project that i asked your advice.
    Unfortunately i couldn't find any good tutorial about understanding the structure of the MIDI files and now i'm a native Hexadecimal/Binary Reader( Sort of :) ).
    Looks like i achieved to the point you've shown in this video. Only with couple of differences( Which are totally normal ).
    I just wanted to thank you again. Your answer helped me believe in myself.
    SO THANK YOU!

  • @jmcasler1512
    @jmcasler1512 3 месяца назад

    Wow, just wow! I need to implement midi in my project and this has been a huge help. Thanks mate!

  • @GregoryTheGr8ster
    @GregoryTheGr8ster 4 года назад

    The first file format that I learned was the interlaced bitmap (ilbm) that was output by Deluxe Paint. I was still so new to programming that learning how to read and write to this file format made me feel empowered in my new skill and profession. It was a blast! I also remember when Deluxe Paint created a new format, the packed bitmap (pbm), for 8-bit-per-pixel graphics. What an improvement!

  • @StuBonham
    @StuBonham 4 года назад +1

    Another fab video! I enjoyed playing with MIDI in my own audio projects, and this provides a great reference for me or anyone else interested in digital music.

  • @rondotexe
    @rondotexe 3 года назад +1

    I'm not even 1/10th through the video and you've already earned my like, comment, and subscription!

    • @javidx9
      @javidx9  3 года назад +1

      Thanks Ron, that's very kind of you to say so, I hope the remaining 90% was satisfactory too :D

  • @PeterMetzger
    @PeterMetzger 4 года назад

    Fantastic! I've worked with MIDI before but never from a coding perspective, love it.

  • @pixelfingers
    @pixelfingers 2 года назад +1

    Loved this 🙂 I’ve made my own web audio music sequencer using text files and have been wondering how I can hook my guitar up to compose tunes rather than typing notes in, so this was very helpful!

  • @claudiostano
    @claudiostano 2 года назад +1

    Inspired by this !! great channel !!
    I've just downloaded MIDI specs to give it a try !!!
    thanks for you work !!

  • @SealedKiller
    @SealedKiller 4 года назад +95

    "A Quick look into the MIDI file format"
    47 minutes okay

    • @javidx9
      @javidx9  4 года назад +51

      Lol, like most programming topics, understanding something complex actually takes time. Would you prefer a 3 minute video with little usable information? If so, im sure there are plenty of alternatives more suitable.

    • @SealedKiller
      @SealedKiller 4 года назад +33

      @@javidx9 I watched the whole video, I was trying to make a joke 😂

    • @samljer
      @samljer 4 года назад +4

      @@SealedKiller He over reacted to something i said once too, comedy often goes over his head, lol i said something similar, basically was told to go elsewhere.
      hes good.. but a clown.

    • @SealedKiller
      @SealedKiller 4 года назад +21

      @@samljer I like his channel. He's not a clown.

    • @FortressofSound
      @FortressofSound 4 года назад

      It's a bad joke?

  • @jaylectric
    @jaylectric 4 года назад +1

    I’m so glad you made this video, Javidx9. MIDI is fascinating. Cheers!

  • @leonardochiruzzi7642
    @leonardochiruzzi7642 4 года назад +6

    I could add this code to the synthesizer code of your previous videos so a keyboard connected via midi to the sound card could work!

  • @daanielacosta2395
    @daanielacosta2395 4 года назад

    What a great video! Thanks @javidx9 for keep making this content.

  • @catapillie
    @catapillie 4 года назад +11

    Oh that's perfect!
    I've been struggling with this recently but you came at the perfect time!
    Keep it up! 👍

    • @javidx9
      @javidx9  4 года назад +3

      Nice one EspriTox!

    • @AftercastGames
      @AftercastGames 4 года назад

      Yeah, this video is about 1 year too late for me. I had to figure all of this out myself. Next time, try to get these videos out BEFORE I need them. :)

  • @supersquare
    @supersquare 4 года назад

    I'm working on optimizing a dsp library right now, this is perfect to listen to :) Thanks so much! I'd love to work on MIDI one day

  • @sergeyvoznyuk1176
    @sergeyvoznyuk1176 Год назад

    JavidX9 humble-bragging about his guitar skills while he's teaching me c++ is what I'm here for

  • @LangleyNA
    @LangleyNA 4 года назад +6

    javidx9. I have a topic request.
    You seem familiar with this. Where a specification for a binary file format exists, partial or full documented, you seem experienced with how to write programming code that opens and interprets and works with that binary data. You seem to have been doing this for quite some time now. And it may not be especially difficult. But I am unknowledgeable with this. I wanted to work with PCX image files in the mid-2000s and failed to do so.
    Can you do an educational video on working with binary file formats? Opening them, moving through the bits and bytes and all of the techno mumbo jumbo? And I'd like if you can make this one of your more elementary videos. A basics video. :)
    Like talking points and things I feel you'd cover in such a video. "MSB" or "most significant byte." All of the hexadecimal codes you employ in the video when moving byte-by-byte through the file. Seeking through the file, like moving to a specific referenced area by a table in the header of the file. Many file formats employ that method. Can you discuss outputting or writing such a file? I don't know how to do that either. What is the means of outputting a binary file format, like an image format, for instance?
    And so all of that is working with the binary file formats, but if you felt to do this separately or in the same episode, I'd think simply covering computer data and file formats, like the ideas of "binary" and "plain text" and the little encoding schemes and "Little Endian" and things... :( You'd do so well to please adolescent me fifteen years ago. I had been trying to do all of these things and I only ever produced results using existing code shared by others. I never wrote my own code to do these things because, despite all my Google searching in the mid-2000s, I was unable to find the methods to work with binary data like this. :(

    • @user-vm1hh2lp1b
      @user-vm1hh2lp1b 4 года назад +1

      You need some sort of specification/guide to know how to interpret the bytes in a binary file. Popular formats have their layout available online, like how to interpret bytes of a wav file for instance. But just a random binary file with no specification is just a sequence of bytes... you can interpret those sequences many different ways, and 99% of those will spit out garbage. Even if you get valid data out (sheer luck) you still won't know what that data represents in the sequence. That's why reversing binary files with no specification is *near* impossible

    • @jaysistar2711
      @jaysistar2711 4 года назад

      I think what you're asking is "How do I parse binary files?" I'd start with the data structures (structs or classes), and try to read it as sequentially as possible (sometimes the table of contents of binary files are at the end of a file, like .zip files and .pdf files), and read each field into the data structure that you've made. This process of parsing and reading (restoring) into your data structure is called "deserialization", and writing (saving) to a file from your data structures is called "serialization". For MSB and LSB handling, most processors can reverse the "endian" (byte order) in a single instruction, but you can do it in C or C++ using a union containing the sized type (sint32_t for example), and a byte (uint8_t) array with the same size. Use the same sort of algorithm that you would use to reverse a string. (The asm single instruction is obviously much faster.)
      Hopefully, if he doesn't make a video, that info (paired with a search engine) will get you started.

  • @speedyc88
    @speedyc88 4 года назад

    Hello Javidx9, Yet again you have blown my mind with what is possible in programming. With just a few lines of code, you can create anything I enjoy the music you played in the video WELLDONE until next time... All the best from Speedy C

  • @incrediblestepsProd
    @incrediblestepsProd 9 месяцев назад

    very very helpful for a project I am working on. Thank you

  • @Shinigami1016
    @Shinigami1016 3 года назад

    You have a lot of sneaky little edits in this video that I love.

  • @chamutalzered7468
    @chamutalzered7468 4 года назад

    Best explanation of MIDI I've ever seen. Thanks.

  • @lewiduressa
    @lewiduressa Год назад

    Wow! Looking forward to implementing this in Java.

  • @agustinespindola3364
    @agustinespindola3364 4 года назад +8

    9:46 "Yoo I know this song idk why"
    10:41 "SHIEEET"

    • @francescoesco123
      @francescoesco123 4 года назад

      Final Fantasy?

    • @sorucoder1657
      @sorucoder1657 4 года назад

      @@francescoesco123 Yes, specifically the Final Fantasy 7 track Let the Battles Begin!

  • @brunofelix5434
    @brunofelix5434 4 года назад +6

    what material did you use to study and reach the level you are today?
    I want to program just like you.
    I think you are an excellent programmer.

    • @javidx9
      @javidx9  4 года назад +19

      Hi Bruno and Thanks, though aim a bit higher! I've been programming for almost 30 years now, that's a lot of time to practice - the key is to never stop learning. But one trick I suggest, is use programming to learn about other things, that way you get a 2 for 1 deal XD

    • @brunofelix5434
      @brunofelix5434 4 года назад

      @@javidx9 thanks for the tip
      I Love your videos..
      I started studying C++

    • @tiagobrizolara
      @tiagobrizolara 4 года назад +1

      What a lovely coincidence... I’m working with NIMEs and a friend showed me your video. I just commented with him that my former advisor used exactly this strategy when learning anything: code it. :) Congratulations for the amazing content, btw!

  • @DeadDie44
    @DeadDie44 4 года назад

    Man I love midi sounds, such nostalgia

  • @MrChernobyl22
    @MrChernobyl22 2 года назад

    Thanks a lot for the video! Incredible! Really fun to mix art, electronics and computer science

  • @Kaltinril
    @Kaltinril 4 года назад +4

    YES! FF7 Battle! That's how I usually decided if the midi synth were good on my win 98 PC :p

    • @javidx9
      @javidx9  4 года назад +4

      lol, it never, ever gets old. I hope it isnt ruined in the remake XD

  • @rugosotv
    @rugosotv 3 года назад

    been waiting 15 years for this video XD

  • @WinLoveCry
    @WinLoveCry 4 года назад +1

    Fantastic video

  • @VasaMusic438
    @VasaMusic438 4 года назад +1

    Fantastic !!! please go ahead with midiplayer adding some more functions, or a song cursor, makers and midilooper !!!

  • @zyapguy
    @zyapguy 4 года назад +3

    yay. new vid

  • @MakotoIchinose
    @MakotoIchinose 3 года назад

    That audio glitch at 3:21 really jumped me.
    Nonetheless, this helps me on creating MIDI based script for animation.

  • @theowinters6314
    @theowinters6314 2 года назад

    The only time I've ever done anything with MIDI was when doing a DOOM port, and having to convert the internal not quite midi to something that could be properly played. Was a fun experience, actually that was true for the whole project as I was using it an excuse to learn some new stuff.

  • @elektrolyghtprodz3572
    @elektrolyghtprodz3572 3 года назад

    I'm actually using this to turn my piano into a badass 8bit synthesizer machine

  • @jondavid3564
    @jondavid3564 2 года назад

    Yes! FFVII battle theme. Excellent choice.

  • @YoomarTuNoOmar
    @YoomarTuNoOmar 4 года назад

    Finally a good MIDI tutorial. Thanks javidx9

  • @LDGamesPC
    @LDGamesPC 4 года назад +4

    This would be good if you could mix this into your earlier synth tutorial series and perhaps cover how to write that to midi

    • @jlewwis1995
      @jlewwis1995 4 года назад

      Eh personally I would prefer a .mod/.xm based sequence format for modern standalone homebrew synths that aren't meant to be used in normal daws as vst like the terminal synthesizer he made, obviously in a vst environment you would want to use midi because I'm pretty sure that's the protocol most daws use internally but for your own programs you obviously have many more potential options

  • @denisivanov4888
    @denisivanov4888 4 года назад +4

    I just got promoted as Senior dev (C#) but compared to your skills and knowledge I feel like intern.

    • @javidx9
      @javidx9  4 года назад +3

      Its just practice and lots of failure...

  • @lonnybulldozer8426
    @lonnybulldozer8426 4 года назад +3

    Good topic.

  • @konstantinrebrov675
    @konstantinrebrov675 4 года назад +1

    Dear sir, can you create a video about what kinds of tools do you recommend for programmers to use and how to use them? Git, GDB, and Valgrind are very well known by many. But what about any more obscure tools that you can recommend? For example, I use Microsoft Programmer Calculator, and Meld for comparing source code files and entire directories, but I haven't heard about anyone using them. What about other useful tools like WinSCP? I have used it but I only know the bare minimum.

  • @ignaciomontali
    @ignaciomontali Год назад

    Awesome Video! Thank you, already subscribed!

  • @climatechangedoesntbargain9140
    @climatechangedoesntbargain9140 4 года назад

    Even though I am not that much interested in the video contents, I like your videos as they are done very well!

    • @daveking-sandbox9263
      @daveking-sandbox9263 Год назад

      That has to be one of the most useless comments I have ever read on RUclips. I don’t even think that ChatGPT could’ve come up with that.

  • @Juksemakeren
    @Juksemakeren 4 года назад +70

    3:21 damaged my ears

    • @javidx9
      @javidx9  4 года назад +17

      Yeah I dunno what that is, its not on my master, I double checked - some youtube wierdness

    • @wayneconover147
      @wayneconover147 4 года назад

      lmao

    • @omgomgomgd
      @omgomgomgd 4 года назад +3

      music to my ears.

    • @sangub86_93
      @sangub86_93 4 года назад +1

      ​@@javidx9 youtube being youtube

  • @Table-Top
    @Table-Top 3 года назад

    Cool, thanks. : )
    I am looking to program a midi chord analyzer in C++ in JUCE. Do you have any ideas on how to get started?

  • @BikeyBekkers
    @BikeyBekkers 4 года назад

    What a great video. Thank you very much.

  • @grapesofmath1539
    @grapesofmath1539 4 месяца назад

    Man, you gotta be young indeed (or in the opposite end of the age spectrum, in which case, respect) to not to know what midi is, ha ha.
    Banter aside, thank you very much for this, as someone who grew up with many older computer games playing midi (well, really even the NES and other such retro consoles used midi),
    it's interesting for me to finally look into what the code actually looks like.
    Ik ik, even games nowadays use midi format, only the quality of the instruments have changed. I'd imagine at least the code of midi nowadays compared to an NES game's midi timing would be different, in much the way versions of C++ are different (but somewhat compatible) from each other, is that correct or is that wrong? Anyways, I always love your videos, even though I barely ever dabble in programming (because I just can't wrap my head around it xP)

  • @RobCardIV
    @RobCardIV 4 года назад

    holy shit taco sauce batman.
    just when i feel like im watching some ancient amazing knowledge RUclips video.
    i peek at the date and its fucking two days ago.
    google...
    google..
    you're getting a lot faster at finding relevant shit that i may want to view.
    i indeed enjoyed this video.

  • @thomasesr
    @thomasesr 4 года назад +1

    At 12:14
    MIDI files are like a box of chocolates, you never know what you gonna get... *//insert Forrest Gump theme here*

  • @veda-powered
    @veda-powered 4 года назад

    I have two questions regarding the code, first I don’t understand why you couldn’t have used a switch for the nStatus upper nibble, which also would’ve compacted some of the code using multiple case statements for the unimplemented cases. Second couldn’t the ReadValue lambda could have just been written with the inner loop, removing the special case if at the beginning. I was just wondering if you had a reason for doing these things this way, or just if it just doesn’t seem better to you to do it the way that I mentioned.

  • @ThePassifi
    @ThePassifi 4 года назад

    Trying to make my own midi visualization and this is super helpful to get me going with the midifileformat. Thank You :).
    I was wondering, having trouble working with binaryfileformats is often something that gets my project to a screeching halt, and I usually end up moving on to other things thinking I have to get better to crack this. Any suggestion on how to learn, get better at reverse engineering fileformats ? It seems even for the more common ones, finding good or any documentation is near impossible.
    Now, I get this is not a trivial thing to do ,so I'm not looking for an easy and quick solution rather some pointers on where to start and what to play around with or read up on.
    Thanks for all your hard work and those insightful and motivating videos :)
    Cheers,

  • @tommytomtomtomestini3894
    @tommytomtomtomestini3894 4 года назад

    I was thinking of some sort of timeline for a SHMUP quite early into the video. You could basically use a midi-editor to place your enemies :D

  • @mnqobihadebe4143
    @mnqobihadebe4143 3 месяца назад

    Bravvo this was very informative many thanks

  • @upload720
    @upload720 3 года назад

    Thank you so much for this video !
    Can you please tell when does it know the track ends? I mean when does the for loop stop running? Thank you :)

  • @chianchen776
    @chianchen776 11 месяцев назад

    What’s the recommend video or series before getting into this? I got so lost at the bits transform part

  • @camaro24pl
    @camaro24pl 11 месяцев назад

    Recently I've been working on the topic of midi in C#. I'm wondering how to create a TICK generator ? When PPQN=480, tempo=240, 1 tick = 521 microseconds. How to program such a decision?
    Thank you !

  • @PiotrMichniewski
    @PiotrMichniewski 4 года назад

    After seeing just the title I was wondering if you were going to use ff7 music as an example and I wasn't disappointed :) In fact I could recognize it just by looking at the track you highlighted

  • @artaway6647
    @artaway6647 4 года назад

    Dang, I was working on my kalimba player when I saw this vid! definitely gonna try this project after finished

  • @dieSpinnt
    @dieSpinnt 4 года назад

    Your MIDI-Event to Visualize-Notes translation is actually an emulator.
    Or how we pesky musicians say: A virtual instrument.
    The silent version was great:P Naaah, I like it:)

  • @Kaltinril
    @Kaltinril 4 года назад +1

    I migrated from hoarding MIDI to XM/MOD/SM etc files because instead of playing synthesized music, they played snippets of wave files (I think?). Obviously this was before MP3.

  • @brisammaresten2857
    @brisammaresten2857 4 года назад +1

    Would you also make a mod/xm player or a video series about it? It'a a music format with real audio data, pitching the samples tbo play the notes and some effects.

    • @AftercastGames
      @AftercastGames 4 года назад

      Yeah. The battle theme (and all SNES and PS1 music) is actually closer to a MOD file than a midi file. The SNES has an 8 channel DSP, and no synthesizer at all.

  • @arthurguo7754
    @arthurguo7754 4 года назад

    thanks man, very helpful tutorial!

  • @HDSQ
    @HDSQ 3 года назад

    There's a horrible noise at 3:21, headphone users turn down your volume. Idk if it's possible but if the creator reads this, muting the content for about .1 seconds would make a world of difference to this.

  • @MarcoScorbati
    @MarcoScorbati 2 года назад

    Thanks for Your Great Work. A question: I want to change the midi protocol and add a key among the 12 stantard keys. That is: 13 semitones. How can I add this using writing software to tell the "machine" to play a 13th clef? The musical scale of 13 semitones would be composed as follows: C - C # - D - D # - E - E # - F - F # - G - G # - A - A # - B. Thanks

  • @jlewwis1995
    @jlewwis1995 4 года назад

    I personally would recommend sekaiju for midi editing, especially if you are writing for an old game that uses modis and GM soundfont compatibility is a necessity

  • @trolledwoods377
    @trolledwoods377 4 года назад +2

    HELL YES!

  • @LukesJuggling
    @LukesJuggling 2 года назад

    "bust out our bags full of cables" ...too true

  • @sonnyobrien
    @sonnyobrien Год назад

    Hey Javid. Im trying to some crazy glitchstep with my live performance using synthesizers. Ive been triggering sudden program changes (sometimes on 16th notes) on my korg synthesizer. Could this damage the synthesizer having so many quick changes? Its really FUN

    • @javidx9
      @javidx9  Год назад

      As long as there's no mechanical relays being switched (unlikely) then no. The circuits used are good for switching well out of audible frequencies to the tune of 3 orders of magnitude at least, so my question is, 16ths? Why so slowly?

  • @Zatmos
    @Zatmos 4 года назад +1

    Not really related but I wondered how you managed to get the console buffer to have a character height of 1, giving you a pixel aspect ratio of 1:1. (11:28)
    The best I can do with my own engine is 1:2. When I set it to 1:1 it just defaults to 1:2 and I end up with a vertically stretched image.

    • @veda-powered
      @veda-powered 4 года назад +1

      He recently made a new game engine actually, which uses opengl instead of console buffers, so (in this video at least) he’s not doing that with the console. You can look for the olc pixel game engine video for more details.

    • @Zatmos
      @Zatmos 4 года назад +1

      @@veda-powered Yes, you're right. I didn't notice it was olcPixelGameEngine.h and not olcConsoleGameEngine.h.
      I was worried there was a way to do 1:1 PAR since I designed the whole engine around the fact that it couldn't go below 1:2 (1:1 would have been workable but not as neat looking as 1:2).
      Thanks.

  • @mrghosti3
    @mrghosti3 3 года назад

    Why is the byte swap important? I understand that systems from way back stored them in RAM with different order compared to todays tech. But don't they swap it before writing into the file so that it would in standart bit order?

  • @bluescanfly1981
    @bluescanfly1981 4 года назад

    Thank you so much, this is great

  • @programorprogrammed
    @programorprogrammed 4 года назад

    Excellent

  • @nithishaloks.r2411
    @nithishaloks.r2411 4 года назад

    NMS Awesome Thank you for Tutorials series

  • @ruadeil_zabelin
    @ruadeil_zabelin 4 года назад

    I'm not so sure about the whole seeking back thing to determine the duration of the note. At least not for playback. I guess you only need this to render out the piano roll?

  • @variancewithin
    @variancewithin Год назад

    yeah... i'll come back to this later. this is a little too advanced for me. looks interesting though!

  • @Phiwipuss
    @Phiwipuss 4 года назад +2

    AMAZING!

  • @rolfjohansen5376
    @rolfjohansen5376 Год назад +1

    is there any point using uint32, uint16, uint8 ? will not the OS work with 32 or 64 bit anyway?

    • @javidx9
      @javidx9  Год назад

      The "bit size" of the processor and OS is not the same concept as the bit size of the data type. Data types in C++ are very important and often the very meaning of the data is related to the type. For example, commonly, a byte is 8 bits, and working with bytes is useful.

  • @richardbloemenkamp8532
    @richardbloemenkamp8532 4 года назад

    Somebody is going to create Synthesizer-Hero or hopefully even a game playable with a midi keyboard. Great idea!

  • @dieSpinnt
    @dieSpinnt 4 года назад

    Thanks for the video, great stuff:)
    Do you really think MIDI has aged well? ... I love it too, but never mind:
    Yeaaaaaah -> The MIDI 2.0 specs are available for download !

  • @HalValla01
    @HalValla01 4 года назад

    "It produces something rather special"
    Sample Libraries: "Am I a joke to you??"

    • @jaysistar2711
      @jaysistar2711 4 года назад

      If you want to browse a sample library by playing a song that you know, then in what format do you store the song? Even in the DAW spicific file formats, probably MIDI.

    • @HalValla01
      @HalValla01 4 года назад +1

      @@jaysistar2711 When I get a new sample library, I just start composing something with it. Whether it sees the light of day or not is a completely different question

  • @sickboi11111
    @sickboi11111 4 года назад

    Great video, thanks for making it!
    Are you going to look at Midi 2.0?

  • @celestialclockwork
    @celestialclockwork 4 месяца назад

    This is amazing. Omg….

  • @xamogxusx
    @xamogxusx 4 года назад

    Much love

  • @maxheadrom3088
    @maxheadrom3088 Год назад

    MIDI 1.1: Making music for over 40 years and people like Chic Corea don't complain!

  • @joshinils
    @joshinils 4 года назад +4

    why didnt you also make a switch for the (nStatus&0xF0) == EventName:: statements? such a long ifelseif with the same thing compared against multiple different things lends itself perfectly for that

  • @MrSaydo17
    @MrSaydo17 4 года назад +1

    Why not use peek instead of get to read the status byte?

  • @medicallyunexplainedsymptoms
    @medicallyunexplainedsymptoms 4 года назад

    O/T - The MiniNova is an incredible synth for not much money.