noelportugal / google-home-notifier

Send notifications to Google Home
MIT License
578 stars 171 forks source link

added play endpoint to play MP3 #13

Closed harperreed closed 7 years ago

harperreed commented 7 years ago

I needed to be able to play mp3 files and not just the google TTS mp3.

Added a simple play endpoint that plays a mp3 URL.

 googlehome.play("http://host/file.mp3", function(res) {
    console.log(res); 
 });

Works reasonably well.