我需要帮助编写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 source code,FIFO是2048 16位整数的数组
提前致谢!