我需要帮助编写一个 conkyrc 文件。它(应该)调用一个 lua 脚本,该脚本读取 MPD 生成的 PCM 数据的 FIFO 管道。此 FIFO 用于在 NCMPCPP 中生成可视化,但我宁愿它转到我桌面上的条形图。是的,我知道它需要快速更新才能看起来不错。我希望我可以做一个更简单的可视化,而不是完整的频谱分析,而不需要昂贵的 FFT 或小波……只是我可以通过管道输入显示目前音乐活动的图表。
[编辑] 取得了进展,尽管有很多软糖因素......
我的 conkyrc 文件
lua_load /home/adam/Programming/myWork/conky/mpd.lua
update_interval .05
TEXT
HERP DEE DERP DEE DERP DEE DUUUR
${lua_bar fifo_func}
我的 lua 文件
do
-- configuration
local interval = 5
-- local variables protected from the evil outside world
local next_update
local buf
local int = 0
local colour = 0
local function update_buf()
buf = os.time()
end
local f = assert(io.open("/tmp/mpd.fifo", "rb"))
local block = 2048 * 2 --2048 samples, 2 bytes per sample
local list = {}
function conky_fifo_func()
local bytes = f:read(block) --read a sample of block bytes
local power = 0
for i = 0, 2047 do
--j = string.byte(bytes, 2*i, 2*i+1) --extract 2 bytes
j = string.format("%u", string.byte(bytes, i*2, i*2+1))
power = power + math.abs(j-(256/2))
--io.write(j..'\n')
end
r=((power/10000)-20) * 15
io.write(r .. '\n')
return r
end
-- returns a percentage value that loops around
function conky_int_func()
int = int + 1
return int % 100
end
end
基于 NCMPCPP 源代码,FIFO 是一个 2048 个 16 位整数的数组
提前致谢!