Can this software create 3D meshes from a MIDI file? #1962
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 20 replies
-
The Width input is just a float input whose name is Width. You can definitely create what you want using this software, I can provide an example file if you couldn't get it to work eventually. |
Beta Was this translation helpful? Give feedback.
-
@sebarious70 I am not not sure about the learning curve, because it likely depends on how familiar are you with Blender, nodes, maths, and so on. But this particular thing you want to do is rather easy, so it is probably worth learning a bit, and we can help you along the process. I made you a simple example to get you started: Just change the path to your MIDI file and you should get MIDI notes as meshes. The Get List Element retrieves the first track from the file. Then we get the note info of that track, and compute the note length by subtracting the on time from the off time. The X position of the note is its On time, its Y position is its note number. The X scale of the note is the note length, while its Y and Z scales are fixes, which you may change based on some note info. |
Beta Was this translation helpful? Give feedback.
@sebarious70 I am not not sure about the learning curve, because it likely depends on how familiar are you with Blender, nodes, maths, and so on. But this particular thing you want to do is rather easy, so it is probably worth learning a bit, and we can help you along the process.
I made you a simple example to get you started:
Just change the path to your MIDI file and you should get MIDI notes as meshes. The Get List Element retrieves the first track from the file. Then we get the note info of that track, and compute the note length by subtracting the on time from the off time. The X position of the note is its On time, its Y position is its note number. The X scale of the note is the …