Skip to content

Instantly share code, notes, and snippets.

@picsoung
Created August 20, 2019 17:05
Show Gist options
  • Save picsoung/49a79329faea5119a6e11ad33d2566d9 to your computer and use it in GitHub Desktop.
Save picsoung/49a79329faea5119a6e11ad33d2566d9 to your computer and use it in GitHub Desktop.
cont fs = require('fs');
let wav = new WaveFile(fs.readFileSync(`hello_${username}.wav`));
let wav64 = wav.toBase64()
axios({
method: 'POST',
url: `http://${ROBOT_IP}/api/audio`,
data:{
FileName: `hello_${username}.wav`,
Data: wav64,
ImmediatelyApply: true, //make Misty play it right away
OverwriteExisting: true
}
}).catch(function(err){
console.log(err)
})
const say = require('say')
say.export(`Hello ${username}`, 'Alex', 0.75, `hello_${username}.wav`, (err) => {
if (err) {
return console.error(err)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment