2.5.0 • Published 2 days ago

@svrooij/sonos v2.5.0

Weekly downloads
194
License
MIT
Repository
github
Last release
2 days ago

Node Sonos (the typescript version)

Support me on Github npm Run tests and publish github issues Coverage Status semantic-release

A node library to control a sonos device, written in Typescript. See here why I've build it while there already is a sonos library written in node.

Key features

  • Auto generated, strongly typed Sonos client.
  • Auto discovery or one know device as starting point.
  • Support for logical devices (grouped speakers) from the start.
  • Access to all (generated) services.
  • Sonos device class with extra functionality.
  • Strongly typed service events.
  • Strongly typed extra events.
  • Easier implementing metadata generation.

Usage

To use the library just add it to your project. npm install @svrooij/sonos. And start using it. This library isn't meant to be used by itself, as you see in the examples you still need to use node (or typescript).

Documentation

Use Sonos manager

This library is developed with Sonos groups in mind. We created a SonosManager to discover all known groups and keep track of changes to them.

const SonosManager = require('@svrooij/sonos').SonosManager
const manager = new SonosManager()
manager.InitializeWithDiscovery(10)
  .then(console.log)
  .then(() => {
    manager.Devices.forEach(d => console.log('Device %s (%s) is joined in %s', d.Name, d.uuid, d.GroupName))
  })
  .catch(console.error)

In some network situations (or Docker usage) SSDP won't work, but you can also start the manager if you know one (static) IP of a single speaker.

const SonosManager = require('@svrooij/sonos').SonosManager
const manager = new SonosManager()
manager.InitializeFromDevice(process.env.SONOS_HOST || '192.168.96.56')
  .then(console.log)
  .then(() => {
    manager.Devices.forEach(d => console.log('Device %s (%s) is joined in %s', d.Name, d.uuid, d.GroupName))
  })
  .catch(console.error)

or control single device

If you just want to control a single device and don't want to use the SonosManager, you can also create a instance of SonosDevice, but you'll be missing the group options.

const SonosDevice = require('@svrooij/sonos').SonosDevice

const sonos = new SonosDevice(process.env.SONOS_HOST || '192.168.96.56')
sonos.LoadDeviceData()
  .then(success => {
    console.log(sonos.Name)
  })
  .catch(console.error)

Documentation

See what else you can do with this library in the documentation

Text to speech

A lot of people want to send text to sonos to use for notifications (or a welcome message in your B&B). This library has support for text-to-speech but you'll need a text-to-speech endpoint. To keep this library as clean as possible, the text-to-speech server is build in a seperate package. See node-sonos-tts-polly for a text-to-speech server that uses Amazon Polly for speech generation.

For my sponsors I've setup a hosted version, so if you don't want to setup your own server, you know what to do.

The text-to-speech works as following:

  1. Request the TTS endpoint what the url of the supplied text is.
  2. If the server doesn't have this file, it will generate the mp3 file on the fly.
  3. The TTS endpoint returns the url of the mp3.
  4. We call the regular .PlayNotification({}) command, with the tts url.

You can also set the endpoint with the SONOS_TTS_ENDPOINT environment variable, so you don't have to supply it every time. The default language can be set with the environment variable SONOS_TTS_LANG.

The server I've build is based on Amazon Polly, but I invite eveybody to build their own if you want to support an other tts service.

const SonosDevice = require('../lib').SonosDevice
const sonos = new SonosDevice(process.env.SONOS_HOST || '192.168.96.56')
sonos.PlayTTS({ text: 'Someone at the front-door', lang: 'en-US', gender: 'male', volume: 50, endpoint: 'https://your.tts.endpoint/api/generate' })
  .then(played => {
    console.log('Played notification %o', played)
    // Timeout to allow event subscriptions to cancel.
    setTimeout(() => {
      process.exit(0)
    }, 500)
  })

Others using node-sonos-ts

NameMaintainerDescription
sonos2mqtt@svrooijA bridge between sonos and mqtt, so you can control all your sonos devices right from your mqtt server
sonos-cli@svrooijAn experimental command line interface for your sonos devices.

Also using this library, but not in the list? Send a PR.

Contributing

You can contribute in many ways. Asking good questions, solving bugs, sponsoring me on github. This library is build in my spare time, so don't be rude about it.

If you're using a music service that currently isn't supported for metadata generation, you should check out the metadata generator. It works by taking an url (which you can get by running the get-position-info sample). And generating a Track for it. Use the information out the console to get the right values. The values you'll be looking for are ProtocolInfo, TrackUri, UpnpClass, ItemID and ParentID.

Currently I'm also looking for a way to add documentation to the automatic generated services, so if you got any ideas, be sure to let me know.

Support me on Github

Contributors ✨

All Contributors

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Developer section

This will contain usefull information if you want to fix a bug you've found in this library. You always start with cloning the repo and doing a npm install in the folder. I like consistancy so everything is in a specific order :wink:.

Running example code

This library has two VSCode launch configurations.

One for running the current open example, you can set breakpoints in the example file and in the typescript code! Be sure to change the IP to your own in .vscode/launch.json, so you don't have to edit all the example files.

And it has a launch configuration to run the current Mocha test file, be sure to have a mocha test (in test folder) open.

Service generator

I've created a one-liner to regenerate all the generated services. SONOS_HOST=192.168.x.x npm run gen-srv.

You can also checkout the documentation on the awesome service generator. This can also be used as a source to generate a client for some other language.

Improvements over node-sonos

The original node-sonos is started a long time ago, before async programming in node, which I'm a contributor as well. Some design decisions cannot be fixed without breaking compatibility with all the applications using it. For instance the .play() function serves multiple purposes, starting playback and switching urls. A lot of applications depend on it, and they would all break if I would remove support for it.

This new library is build from the ground up using node-fetch for the requests and fast-xml-parser for the xml stuff.

One of the most important parts of this new library is the service-generator, it parses the /xml/device_description.xml file from the sonos device. And generates a strong typed service class for it. This means that this library will support everything the sonos controller can do. And it also means that it will tell your which parameters it expects.

Big thanks to all the original contributors

Creating a library from scratch is quite hard, and I'm using a lot of stuff from the original library. That wouldn't exists without the contributors.

2.6.0-beta.11

2 days ago

2.6.0-beta.8

1 month ago

2.6.0-beta.9

1 month ago

2.6.0-beta.10

1 month ago

2.6.0-beta.7

3 months ago

2.6.0-beta.6

10 months ago

2.6.0-beta.5

1 year ago

2.6.0-beta.3

1 year ago

2.6.0-beta.4

1 year ago

2.6.0-beta.2

1 year ago

2.6.0-beta.1

2 years ago

2.5.1-beta.1

2 years ago

2.5.1-beta.2

2 years ago

2.5.0

2 years ago

2.5.0-beta.9

2 years ago

2.5.0-beta.8

2 years ago

2.5.0-beta.4

2 years ago

2.5.0-beta.5

2 years ago

2.5.0-beta.6

2 years ago

2.5.0-beta.7

2 years ago

2.5.0-beta.2

2 years ago

2.5.0-beta.3

2 years ago

2.5.0-beta.1

3 years ago

2.4.1

3 years ago

2.4.2-beta.1

3 years ago

2.4.1-beta.5

3 years ago

2.4.1-beta.4

3 years ago

2.4.1-beta.3

3 years ago

2.4.1-beta.2

3 years ago

2.4.1-beta.1

3 years ago

2.4.0

3 years ago

2.4.0-beta.4

3 years ago

2.4.0-beta.3

3 years ago

2.4.0-beta.2

3 years ago

2.4.0-beta.1

3 years ago

2.3.0-beta.6

3 years ago

2.3.0

3 years ago

2.3.0-beta.5

3 years ago

2.3.0-beta.4

3 years ago

2.3.0-beta.3

3 years ago

2.3.0-beta.1

3 years ago

2.3.0-beta.2

3 years ago

2.2.0-beta.7

3 years ago

2.2.0

3 years ago

2.2.0-beta.6

3 years ago

2.2.0-beta.4

3 years ago

2.2.0-beta.5

3 years ago

2.2.0-beta.3

3 years ago

2.2.0-beta.2

3 years ago

2.2.0-beta.1

3 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.1.0-beta.1

4 years ago

2.0.9

4 years ago

2.0.9-beta.1

4 years ago

2.0.9-beta.2

4 years ago

2.0.8

4 years ago

2.0.8-beta.1

4 years ago

2.0.7

4 years ago

2.0.6

4 years ago

2.0.5

4 years ago

2.0.4

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago