about summary refs log tree commit diff
path: root/users/Profpatsch/lyric/lyric-mpv-script.lua
diff options
context:
space:
mode:
Diffstat (limited to 'users/Profpatsch/lyric/lyric-mpv-script.lua')
-rw-r--r--users/Profpatsch/lyric/lyric-mpv-script.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/users/Profpatsch/lyric/lyric-mpv-script.lua b/users/Profpatsch/lyric/lyric-mpv-script.lua
index e492bf687140..ba05c7c449f6 100644
--- a/users/Profpatsch/lyric/lyric-mpv-script.lua
+++ b/users/Profpatsch/lyric/lyric-mpv-script.lua
@@ -1,5 +1,11 @@
 -- get_lrc_subtitles.lua
 
+-- Function to remove Unicode symbol characters
+function remove_symbols(str)
+    -- This pattern matches anything that is not a letter, digit, or whitespace
+    return str:gsub("[%p%c%z]", "") -- remove punctuation, control, and zero-width characters
+end
+
 -- Asynchronous callback function to handle the result of the 'get_subtitles' command
 function handle_subtitle_result(success, result)
     if not success or result.status ~= 0 then
@@ -41,6 +47,9 @@ function load_lrc_subtitles()
     -- Concatenate the metadata
     local query = string.format("%s %s %s", artist, album, title)
 
+    -- Remove Unicode symbols from the query string
+    query = remove_symbols(query)
+
     -- Create the command array
     local cmd = {"@get_subtitles_command@", query}