0.0.1 • Published 2 years ago
melodicious
Licence
ISC
Version
0.0.1
Deps
0
Size
8 kB
Vulns
0
Weekly
0
License Agreement
Any use for borken human artist or fake stream are not allowed here
What's this
An easy-to-use API for generating music
More details
Your can generate your own music in high-solution method we call "ai-midi"
even you can sing and render your voice to professional vocalist
How to setup
npm install melodicious
For example
// import modular [npm install melodicious]
const APIClient = require('melodicious_npm');
// setting configs
baseURL = ''
username = ''
usertoken = ''
callEndpoint = ''
configs = {
"configs":{}
}
// create client
const client = new APIClient(baseURL,username,usertoken,callEndpoint,configs);
// run and connect
async function run() {
try {
const result = await client.playing();
console.log(result);
} catch (error) {
console.error(error);
}
}
run()