mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
58 lines
2.1 KiB
Lua
58 lines
2.1 KiB
Lua
-- Copyright 2020 Lean <coolsnowwolf@gmail.com>
|
|
-- Licensed to the public under the Apache License 2.0.
|
|
|
|
m = Map("shairport-sync", translate("Apple AirPlay 2 Receiver"), translate("Apple AirPlay 2 Receiver is a simple AirPlay server implementation"))
|
|
|
|
m:section(SimpleSection).template = "shairport-sync/shairport-sync_status"
|
|
|
|
s = m:section(TypedSection, "shairport-sync")
|
|
s.addremove = false
|
|
s.anonymous = true
|
|
|
|
enable=s:option(Flag, "enabled", translate("Enabled"))
|
|
enable.default = "0"
|
|
enable.rmempty = false
|
|
|
|
respawn=s:option(Flag, "respawn", translate("Respawn"))
|
|
respawn.default = false
|
|
|
|
apname = s:option(Value, "name", translate("Airport Name"))
|
|
apname.rmempty = false
|
|
|
|
auth=s:option(Flag, "auth", translate("Password Auth"))
|
|
auth.default = false
|
|
|
|
pw = s:option(Value, "password", translate("Password"))
|
|
pw.rmempty = true
|
|
pw.password = true
|
|
pw.default = ""
|
|
pw:depends("auth", "1")
|
|
|
|
interpolation=s:option(ListValue, "interpolation", translate("Interpolation"))
|
|
interpolation:value("basic", translate("Internal Basic Resampler"))
|
|
interpolation:value("soxr", translate("High quality SoX Resampler"))
|
|
|
|
port=s:option(Value, "port", translate("Port"))
|
|
port.rmempty = false
|
|
port.datatype = "port"
|
|
|
|
alsa_output_device=s:option(ListValue, "alsa_output_device", translate("Alsa Output Device"))
|
|
alsa_output_device:value("", translate("default"))
|
|
alsa_output_device:value("hw:0", translate("1st Soundcard"))
|
|
alsa_output_device:value("hw:1", translate("2nd Soundcard"))
|
|
|
|
alsa_mixer_control_name=s:option(ListValue, "alsa_mixer_control_name", translate("Alsa Mixer Control Name"))
|
|
alsa_mixer_control_name:value("", translate("default"))
|
|
alsa_mixer_control_name:value("PCM", translate("PCM"))
|
|
|
|
alsa_output_rate=s:option(ListValue, "alsa_output_rate", translate("Alsa Output Rate"))
|
|
alsa_output_rate:value("auto", translate("auto"))
|
|
alsa_output_rate:value("44100", translate("44.1Khz"))
|
|
alsa_output_rate:value("88200", translate("88.2Khz"))
|
|
alsa_output_rate:value("176400", translate("176.4Khz"))
|
|
alsa_output_rate:value("352800", translate("352.8Khz"))
|
|
|
|
alsa_buffer_length=s:option(Value, "alsa_buffer_length", translate("Alsa Buffer Length"))
|
|
alsa_buffer_length.default = "6615"
|
|
|
|
return m |