![]() |
|
Playcount statistics - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: Playcount statistics (/showthread.php?tid=4034) |
Playcount statistics - rezeptpflichtig - 18-05-2017 17:24 Hello, I was wondering if it is possible to gather some statistics what files where played how often. my first idea was to do set log level to debug and with a shellscript that does Code: tail -f /usr/local/share/minimserver/data/minimserver.log | grep -A 1 -e 'Content-Type: audio' | sed -n -e 's/^.*from file //p'however this does not work with tail -f on the fly.. any ideas how I could do this? best regards RE: Playcount statistics - rezeptpflichtig - 06-06-2017 16:58 Code: tail -f /minimserver/data/minimserver.log | grep --line-buffered -A 1 -E "(Content-Type: audio)" | stdbuf -o0 sed -n -e 's/^.*from file //p' | stdbuf -o0 uniq >> output.logthat worked for me in the end. I am writing a python script to submit this data to listenbrainz.org and maybe last.fm so I probably will redo all this stuff in python. |