How would I externally load a song to a deck? Is there a JSON or XML interface I can talk to? It would be great if I could pass some JSON or XML like this:
[{"LoadSong":"Deck1",
{"file":"C:/MyMusic/David Bowie/Changes.mp3",
"key":"-1",
"StartPoint":"0",
"StartDelay":"3"
}
}]
and have the song load into deck 1, start from the beginning in 3 seconds with the key set to -1.
Is there anything close to this? Is there an XML interface? Is there an existing C library. If not, how hard would it be to write the code to do this? It seems like it should be a straightforward thing to do since there is already a drag and drop interface.
Thanks!
[{"LoadSong":"Deck1",
{"file":"C:/MyMusic/David Bowie/Changes.mp3",
"key":"-1",
"StartPoint":"0",
"StartDelay":"3"
}
}]
and have the song load into deck 1, start from the beginning in 3 seconds with the key set to -1.
Is there anything close to this? Is there an XML interface? Is there an existing C library. If not, how hard would it be to write the code to do this? It seems like it should be a straightforward thing to do since there is already a drag and drop interface.
Thanks!
发表时间 Tue 11 Nov 14 @ 5:30 am
You could do it by creating a plugin DLL/Bundle using C++.
发表时间 Tue 11 Nov 14 @ 8:21 am





