mpv2oboeru

mpv helpers to create flashcards from movies and TV shows
git clone anongit@rnpnr.xyz:mpv2oboeru.git
Log | Files | Refs | Feed | README | LICENSE

Commit: b6dad0354da84de4a823736f8f5282775e663583
Parent: 458ee71542f8ace799f6265e948233a3ff85faa5
Author: Ren Tatsumoto
Date:   Wed, 26 Aug 2020 09:24:00 +0300

count japanese space as a special character

Diffstat:
Msubs2srs.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subs2srs.lua b/subs2srs.lua @@ -90,7 +90,7 @@ local function remove_extension(filename) end local function remove_special_characters(str) - return str:gsub('[%c%p%s]','') + return str:gsub('[%c%p%s]',''):gsub(' ', '') end local function remove_text_in_brackets(str)