Skip to content

Instantly share code, notes, and snippets.

View alecwbr's full-sized avatar

Alec Weber alecwbr

View GitHub Profile
@alecwbr
alecwbr / icylogger.lua
Last active November 16, 2023 07:53 — forked from garoto/mpvhistory.lua
mpv script that logs metadata from Icecast streams
-- mpv script that logs metadata from Icecast streams.
-- Also adds a key binding to add an explicit current playing item to a favorite file.
-- Other changes are the string format and date format written to the log files
local CONFIG_DIR = (os.getenv("APPDATA") or os.getenv("HOME").."/.config");
local HISTFILE = CONFIG_DIR.."/mpv/icyhistory.log";
local FAVFILE = CONFIG_DIR.."/mpv/icyfavorites.log";
local function append_to_file(file, val)
local logfile;