This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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; |