I’ve been using the Squeezebox component to control my LMS server, with command strings from IFTTT like this:
{ “entity_id”: “media_player.lounge_tv”, “command”: “playlist”, “parameters”: [“loadtracks”, “track.titlesearch={{TextField}}”] }
Does anyone know if/how it is possible to send multiple commands to Squeezebox? For example, I’d like to use the following CLI commands to play a specific track from a specific album:
params = (
(‘player’, ‘your.player.mac.id’),
(‘action’, ‘’),
(‘search.me_titlesearch’, ‘cracked actor’),
(‘search.album_titlesearch’, ‘Aladdin Sane’),
(‘saveSearch’, ‘’),
(‘submitAdvSearch’, ‘Suchen’),
(‘searchType’, ‘Track’),
)
What would my IFTTT webhook json data need to look like if I wanted to execute that?