I have four Fabriq Riff speakers and a Fabriq Chorus speaker. I am using the Media Renderer (app)/DLNA Player (Driver) from Ulises Mujica (Ule) that was originally ported to Hubitat by @veeceeoh and I made some additional alterations to get it to work for me.
/**
* MediaRenderer Player v2.5.0
*
* Author: SmartThings - Ulises Mujica (Ule)
*
* altered for Hubitat by @veeceeoh 5/4/2018
*/
preferences {
input(name: "customDelay", type: "enum", title: "Delay before msg (seconds)", options: ["0","1","2","3","4","5"])
input(name: "actionsDelay", type: "enum", title: "Delay between actions (seconds)", options: ["0","1","2","3"])
input "noDelay", "bool", title: "Avoid Secure Delay", required: false, defaultValue: false
input(name: "refreshFrequency", type: "enum", title: "Refresh frequency (minutes)", options:[0:"Auto",3:"3",5:"5",10:"10",15:"15",20:"20"])
input "externalTTS", "bool", title: "Use External Text to Speech", required: false, defaultValue: false
input "ttsApiKey", "text", title: "TTS Key", required: false
input(name: "genre", type: "enum", title: "Music Genre", defaultValue:"Smooth Jazz", options:getGenres())
input "useGenres", "bool", title: "Multiple Genres Instead of Genre", required: false, defaultValue: false
input "genres", "text", title: "Multiple Genres, Write Exact Like Music Genre List", required: false, description:"genre1,genre2,genre3"
}
This file has been truncated. show original
/**
* MediaRenderer Service Manager v 2.1.0
*
* Author: SmartThings - Ulises Mujica
* adapted to Hubitat by@veeceeoh 05/04/2018
*
*/
definition(
name: "MediaRenderer (Connect)",
namespace: "scottma61",
author: "Ulises Mujica/veeceeoh",
description: "Allows you to control your Media Renderer from the Hubitat app. Perform basic functions like play, pause, stop, change track, and check artist and song name from the Things screen.",
category: "Hubitat",
singleInstance: true,
iconUrl: "", //"https://graph.api.smartthings.com/api/devices/icons/st.secondary.smartapps-tile?displaySize=2x",
iconX2Url: "" //"https://graph.api.smartthings.com/api/devices/icons/st.secondary.smartapps-tile?displaySize=2x"
)
preferences {
This file has been truncated. show original