The first random song it gave me sounded suspiciously like the Perry the Platypus theme...
And the first four bars of the second random one? I may have to actually
steal use that in an LMMS song at some point.
http://onlinesequencer.net/3482
EDIT: Could it be made so that it does not immediately load a new random thing as soon as it finishes? Or at least optional.
EDIT 2: I just had a crazy idea. Now that ROBLOX lets us use HTTP requests, and upload sounds, it would be so easy to turn an existing MIDI ROBLOX player of mine into something that can access Online Sequencer data. I notice around line 167 in the application PHP page the following bits:
"window.onload = function()
{
create();
var data = "0 D5 1 0;1 D5 1 0;2 F#5 1 0;3 F#5.....
song.setBPM(80);"
The data appears slightly more complex, though not far more, than the "c;0.1;c;0.1;v;0.1;b;0.1;b;0.1" and so forth that I use in my Roblox script.
Would it be possible to access those two pieces of data through my own website, or to have a simple page that displays them in text format with a GET url?
Theoretically I could use PHP or even Roblox LUA to access that same page that I got the data frm, and use parsing to isolate them, but that would take quite a bit of processing power.