Default playlist 24/7 & log file "whats played"
  • Listeners ask me: “What song played yesterday, 5 pm?”, but I don't know - liquidsoap script playing music random.
    What changes I can make with liquidsoap (or other) for automatic creation playlog.txt file with information about path/file and time when it played?

    Example content of log file:
    …..
    01/01/13
    00:00:00 – jingles/m/first.mp3
    00:00:15 – global/2 unlimited/No Limit/No Limit.mp3
    00:03:45 – global/ELO/Time/Ticket to the moon.mp3
    …..

    Thank you,
    Serg
  • 1 Comment sorted by
  • Just use the icecast log file by enabling that feature in /etc/icecast/icecast.xml
    Icecast stores all the files streamed in logfiles!
    Check this for more info http://www.icecast.org/docs/icecast-2.3.3/icecast2_config_file.html
        <logging>
    <accesslog>access.log</accesslog>
    <errorlog>error.log</errorlog>
    <playlistlog>playlist.log</playlistlog>
    <loglevel>4</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
    </logging>

    Post edited by Aris Synodinos at 2013-01-23 17:56:16