Created
August 20, 2019 17:05
-
-
Save picsoung/49a79329faea5119a6e11ad33d2566d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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