Skip to content

Instantly share code, notes, and snippets.

View christosangelopoulos's full-sized avatar

Christos Angelopoulos christosangelopoulos

View GitHub Profile
@christosangelopoulos
christosangelopoulos / icecast-logger.lua
Last active November 16, 2023 07:54 — forked from alecwbr/icylogger.lua
mpv script that logs metadata from Icecast streams
-- mpv script that logs metadata from Icecast streams.
-- script adapted from here: https://gist.github.com/alecwbr/c84381559ded9ed8553dc53dc251b416
local CONFIG_DIR = (os.getenv("APPDATA") or os.getenv("HOME").."/.config");
local HISTFILE = CONFIG_DIR.."/mpv/icyhistory.log";
local function append_to_file(file, val)
local logfile;