Ultimate functionality. Unparalleled sound quality. Premium iOS music player for Hi-Res music with different sources to play any music files, with ultimate sound quality. Your unlimited cloud storage for Hi-Res music. Play it from your Mac, iPhone, Carplay, Sonos and any other supported audio system.
- MacOS Catalina 10.15.7 Supplemental Update 2. MacOS Catalina 10.15.7 supplemental update addresses an issue that may prevent the battery from charging in some 2016 and 2017 MacBook Pro models.
- Get VOX Music Player for Mac for FREE — best sound quality and minimalist design are the perfect way to manage music on your Mac. Built-in Internet Radio online app, Soundcloud player and streaming music included.
The Sonos Control API is the primary means by which your application will interact with Sonos groups. First, discover available groups and players. Then use Control API commands to control players. For example, perform basic transport control such as play, pause, or skip. Or subscribe to receive events from the player, like track metadata.
The base URL is the API gateway to the Sonos cloud and the current version number:
api.ws.sonos.com/control/api/v1
See Control for details.
Click here to download the Sonos Desktop Controller for Mac Click here to download the Sonos Desktop Controller for PC Click here to download the Sonos Controller for iPhone Click here to download the Sonos Controller for iPad Alternatively, to download the Sonos Controller for iOS devices, search for Sonos in the App Store. Play YouTube on Sonos using AirPlay 2. If you have an Apple device, you're able to use AirPlay to wirelessly ping music over – kind of like Bluetooth or Wi-Fi streaming, but just for iPhone and iPad. Many Sonos speakers, including the Sonos One, Beam, Playbase, Move and the second-generation Play:5 all support AirPlay 2. The Sonos app will of course catch up and update to the track you're playing accordingly. Download on 7digital, stream on Sonos. It's not all about streaming services. Add your 7digital account details to the Sonos app and you can play all the music stored in your 7digital locker on Sonos. Buy new music on 7digital?
Here’s a grid of available namespaces and commands. Click a namespace or command for details. Click List View to see these commands in a list with URL paths.
audioClip
cancelAudioClip
loadAudioClip
subscribe
unsubscribe
favorites
getFavorites
loadFavorite
subscribe
unsubscribe
groups
getGroups
createGroup
modifyGroupMembers
setGroupMembers
subscribe
unsubscribe
groupVolume
getVolume
setVolume
setRelativeVolume
setMute
subscribe
unsubscribe
homeTheater
getOptions
loadHomeTheaterPlayback
setOptions
setTvPowerState
playback
getPlaybackStatus
loadLineIn
pause
play
seek
seekRelative
setPlayModes
skipToNextTrack
skipToPreviousTrack
subscribe
togglePlayPause
unsubscribe
playbackMetadata
getMetadataStatus
subscribe
unsubscribe
playbackSession
createSession
joinOrCreateSession
joinSession
loadCloudQueue
loadStreamUrl
refreshCloudQueue
skipToItem
seek
seekRelative
subscribe
suspend
unsubscribe
playerVolume
getVolume
setVolume
setRelativeVolume
setMute
subscribe
unsubscribe
playlists
getPlaylist
getPlaylists
loadPlaylist
subscribe
unsubscribe
The sonos
integration allows you to control your Sonos wireless speakers from Home Assistant. It also works with IKEA Symfonisk speakers.
You can configure the Sonos integration by going to the integrations page inside the configuration panel.
Services
The Sonos integration makes various custom services available.
Service sonos.snapshot
Take a snapshot of what is currently playing on one or more speakers. This service, and the following one, are useful if you want to play a doorbell or notification sound and resume playback afterwards. If no entity_id
is provided, all speakers are snapshotted.
The queue is not snapshotted and must be left untouched until the restore. Using media_player.play_media
is safe and can be used to play a notification sound, including TTS announcements.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | The speakers to snapshot. To target all Sonos devices, use all . |
with_group | yes | Should we also snapshot the group layout and the state of other speakers in the group, defaults to true. |
Service sonos.restore
Restore a previously taken snapshot of one or more speakers. If no entity_id
is provided, all speakers are restored.
The playing queue is not snapshotted. Using sonos.restore
on a speaker that has replaced its queue will restore the playing position, but in the new queue!
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that should have their snapshot restored. To target all Sonos devices, use all . |
with_group | yes | Should we also restore the group layout and the state of other speakers in the group, defaults to true. |
Service sonos.join
Group players together under a single coordinator. This will make a new group or join to an existing group.
Service data attribute | Optional | Description |
---|---|---|
master | no | A single entity_id that will become/stay the coordinator speaker. |
entity_id | yes | String or list of entity_id s to join to the master. |
Service sonos.unjoin
Remove one or more speakers from their group of speakers. If no entity_id
is provided, all speakers are unjoined.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s to separate from their coordinator speaker. |
Service sonos.set_sleep_timer
Download Sonos To Computer
Sets a timer that will turn off a speaker by tapering the volume down to 0 after a certain amount of time. Protip: If you set the sleep_time value to 0, then the speaker will immediately start tapering the volume down.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that will have their timers set. |
sleep_time | no | Integer number of seconds that the speaker should wait until it starts tapering. Cannot exceed 86399 (one day). |
Service sonos.clear_sleep_timer
Clear the sleep timer on a speaker, if one is set.
Service data attribute | Optional | Description |
---|---|---|
entity_id | no | String or list of entity_id s that will have their timers cleared. Must be a coordinator speaker. |
Service sonos.update_alarm
Update an existing Sonos alarm.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that will have their timers cleared. Must be a coordinator speaker. |
alarm_id | no | Integer that is used in Sonos to refer to your alarm. |
time | yes | Time to set the alarm. |
volume | yes | Float for volume level. |
enabled | yes | Boolean for whether or not to enable this alarm. |
include_linked_zones | yes | Boolean that defines if the alarm also plays on grouped players. |
Service sonos.set_option
Set Sonos speaker options.
Night Sound and Speech Enhancement modes are only supported when playing from the TV source of products like Sonos Playbar and Sonos Beam. Other speaker types will ignore these options.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that will have their options set. |
night_sound | yes | Boolean to control Night Sound mode. |
speech_enhance | yes | Boolean to control Speech Enhancement mode. |
status_light | yes | Boolean to control the Status (LED) Light. |
Service sonos.play_queue
Starts playing the Sonos queue.
Force start playing the queue, allows switching from another stream (such as radio) to playing the queue.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that will start playing. It must be the coordinator if targeting a group. |
queue_position | yes | Position of the song in the queue to start playing from, starts at 0. |
Service sonos.remove_from_queue
Removes an item from the queue.
Service data attribute | Optional | Description |
---|---|---|
entity_id | yes | String or list of entity_id s that will remove an item from the queue. It must be the coordinator if targeting a group. |
queue_position | yes | Position in the queue to remove. |
Sonos Desktop Controller Download
Advanced use
For advanced uses, there are some manual configuration options available. Mass effect 3 pc digital download. These are usually only needed if you have a complex network setup where Home Assistant and Sonos are not on the same subnet.
You can disable auto-discovery by specifying the Sonos IP addresses:
Sonos Desktop Controller
If your Home Assistant server has multiple IP addresses, you can provide the IP address that should be used for Sonos auto-discovery. This is rarely needed since all addresses should be tried by default.
The Sonos speakers will attempt to connect back to Home Assistant to deliver change events. By default, Home Assistant will listen on port 1400 but will try the next 100 ports above 1400 if it is in use. You can change the IP address that Home Assistant advertises to Sonos speakers. This can help in NAT scenarios such as when not using the Docker option --net=host
:
Watch a video or …
… read below about
- a new intuitive and elegant User Interface for Sonos on your iPad
- integrated browser for fast information retrieval
- less taps for common tasks
- and current limitions (don’t skip them 😉 )
A new intuitiv and elegant user interface for Sonos on your iPad
- SonoPad focusses on the main tasks in its user interface, making it less cluttered and easier to find your way around
- Don’t hide your covers in a small area, SonoPad give big room to show show your gorgeous covers all the time
- Drag and Drop Zone Management
- A classic dark theme for all those who can’t stand blue anymore
- Volume + progress popups: when changing volume or progress of a song, you get popups telling you the actual values. Stop guessing your desired values today!
- Screensaver mode
Integrated browser for fast information retrieval
- SonoPad knows what you are playing, the web knows even more.
Pregenerated links and searches based on your playlist: you are just a tap away from Wikipedia, Lyrics search, Tourdates Search, Last.FM, YouTube, Facebook, AllMusic, MusicBrainz and many more.
Less taps for common tasks
- SonoPad tries to optimize most often used tasks to have the least taps needed. In the end you are able to navigate and control your Sonos players much more fluently.34
- Tap To Play: are you sick of always beeing asked what to do when you tap a track or album? SonoPads default is to just start to play. A long press still gives you access to all options – you can also change the tap default on the settings screen. Want to build a playlist fast? Just set the default to ‘always add to end’ and off you go …
- aggregated search: search results are collapsed into one view, so you see immediately in what category you have the best results, without switching back and forth
- shortcuts to most used functions: on the bottom bar you have shortcut buttons for artist, albums, radio and musicservices. The Radios menu is rearranged so you are only two taps away from your radio favorites from any place.
- you can control the volume of every Sonos player directly from the players popup. No need to switch players anymore.
Limitations
- All music services except Google Music are supported
- No portrait mode on the main screen of your iPad yet.
- No playing of music stored on iPad yet-
- No options to set alarms or sleep settings
- No support for discontinued WD100 dock
Sonos S1 Controller
Please also share your thoughts here on my Blog, where I’m able to answer you (via AppStore comments I cannot get into touch with you). I really care about your ideas, as I want to make SonoPad the best alternative Sonos Controller out there
How Do I Download Sonos To My Mac
Other stuff
- you can start SonoPad with the ‘sonopad://’ URL from other remote Apps and also hand over parameters for defaultPlayer and returnURL
- SonoPad shows artist names when browsing compilitions
- Sonos is registered trademark of Sonos, Inc.
- This application is not endorsed by or associated with Sonos, Inc. (which is why it is not free)