Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Playcount statistics
18-05-2017, 17:24
Post: #1
Playcount statistics
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'
to get a list of all played/served audio files.
however this does not work with tail -f on the fly.. any ideas how I could do this?

best regards
Find all posts by this user
Quote this message in a reply
06-06-2017, 16:58 (This post was last modified: 06-06-2017 16:59 by rezeptpflichtig.)
Post: #2
RE: Playcount statistics
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.log

that 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.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)