Because of the horrible audio update, I wanted to give players a new way of playing their own music,
I thought that midis are a good idea since you can find them anywhere.
The problem is that I have no idea on how to read nor play theese files in ROBLOX.
Could anyone provide a post explaining how to play those files?
Thanks.
Good luck recreating an Audio Protocol… And I think its against the TOS because its not moderated and users are not allowed to share links from a different website that is not "Discord, amazon bla bla bla, Just look in the TOS which websites are allowed lol) - So if you create a frame where people can insert a link like https://hyper-tech.ch then YOU will get a Moderation and the Player will get a Moderation if roblox finds out. I dont want to be mean, but forget about it. Just wait until roblox makes audio public again. Hopefully soon
Edit: Funny that you guys clicked 11 times on the link
very cool project, not sure if it is totally legal . First of all you need to decode the file after HTTP GET request with the url, and then parsing somehow midi binary to readable data, like making your own audio protocol!
Seeing as nobody has answered this yet, you require a few steps before you can turn an offsite MIDI file into actually readable text the computer can use. If any of you do actually want to attempt this, heres a basic guide:
You need a URL and HTTP Requests, this URL should be the download link that begins the download of the MIDI file onto your computer, and can be grabbed by right clicking the download link and pressing “Copy Link Address”.
Use 2012 code that not even I understand completely to eventually form a long string of numbers, lines, and all, capable of being fed into a midi player of your choice, as you eventually are forced to figure out how to properly put it into a piano.
Incase you haven’t figured out already, I’m still figuring out how the third part works and have been for about a day now, but its capable of playing MIDI files in roblox, so thats a start.
The Base 64 and URL grabber system was made by me, and the mixer and the Midi Object Generator were both made by GameHero, who made Advanced Midi Player (10) in 2012, last updated in 2015. The only thing I can tell any poor soul who is attempting to try this is to 1. Research, and 2. Learn how to convert the MIDI output to virtual piano output. Its possible, but annoying.
(Please remember to press the play button when it loads)
Possible, would make it a whole lot easier than it being a midi value, I didn’t do too much editing to the conversion script itself but it’s something to look into (That and I would rather not sift through 2012 code remaking it, but perhaps it can be a project for a rainy day)
The real trouble that I find in the midi files is their beats, ticks and tempos. I’m not sure Roblox would allow such precise timing as in the format. I’m pretty sure that this is the most excruciating part though.