about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/Profpatsch/lyric/lyric-timing-mpv-script.lua29
1 files changed, 27 insertions, 2 deletions
diff --git a/users/Profpatsch/lyric/lyric-timing-mpv-script.lua b/users/Profpatsch/lyric/lyric-timing-mpv-script.lua
index 6558422f1092..db28c0a24f95 100644
--- a/users/Profpatsch/lyric/lyric-timing-mpv-script.lua
+++ b/users/Profpatsch/lyric/lyric-timing-mpv-script.lua
@@ -16,18 +16,43 @@ function write_timestamp_to_lrc()
         return
     end
 
-    -- Extract metadata for artist and title
+    -- Extract metadata for artist, title, and album
     local artist = mp.get_property("metadata/by-key/ARTIST", "Unknown Artist")
     local title = mp.get_property("metadata/by-key/TITLE", "Unknown Title")
+    local album = mp.get_property("metadata/by-key/ALBUM", "Unknown Album")
 
     -- Construct the lrc dir
     local dir = cache_dir .. "/lyric/timed"
-    local lrc_filename = string.format("%s/%s - %s.lrc", dir, artist, title)
+    local lrc_filename = string.format("%s/%s - %s - %s.lrc", dir, artist, album, title)
 
     -- Get current playback time
     local current_time = mp.get_property_number("time-pos", 0)
     local formatted_time = format_timestamp(current_time)
 
+    -- If the file does not exist, or is empty, create it and add metadata in the following format:
+    -- [ar: Chubby Checker oppure  Beatles, The]
+    -- [al: Hits Of The 60's - Vol. 2 – Oldies]
+    -- [ti: Let's Twist Again]
+    -- [au: Written by Kal Mann / Dave Appell, 1961]
+    -- [length: 2:23]
+    local file = io.open(lrc_filename, "r+")
+    if file then
+        -- read the file and check whether it only contains whitespace
+        local content = file:read("*all")
+        if content:match("^%s*$") then
+            file:write("[ar: " .. artist .. "]\n")
+            file:write("[al: " .. album .. "]\n")
+            file:write("[ti: " .. title .. "]\n")
+            local duration = mp.get_property_number("duration", 0)
+            local formatted_duration = string.format("%02d:%02d", math.floor(duration / 60), duration % 60)
+            file:write("[length: " .. formatted_duration .. "]\n")
+            file:write("\n")
+        end
+        file:close()
+    else
+        mp.msg.error("Failed to open " .. lrc_filename)
+    end
+
     -- Append the timestamp to the LRC file
     local file = io.open(lrc_filename, "a")
     if file then