adding an old script so its not just on discord

This commit is contained in:
garret 2024-02-17 01:56:26 +00:00
parent c9d015db84
commit 5b8b02f1b1
1 changed files with 46 additions and 0 deletions

46
macros/light-purge.lua Normal file
View File

@ -0,0 +1,46 @@
script_name = "TXT Cleanup"
script_description = "remove actors and/or linebreaks"
script_author = "garret"
script_version = "2.0.0"
local function main(sub, conf)
for i = 1, #sub do
if sub[i].class == "dialogue" then
local line = sub[i]
if conf.purge_actors == true then
line.actor = ""
end
if conf.purge_linebreaks == true then
line.text = line.text:gsub(" *\\[Nn] *", " ")
end
sub[i] = line
end
end
end
local function conf()
local conf = {
{
class = "checkbox",
name = "purge_actors",
x = 0,
y = 0,
width = 1,
height = 1,
label = "Remove Actors",
value = true,
},
{
class = "checkbox",
name = "purge_linebreaks",
x = 0,
y = 1,
width = 1,
height = 1,
label = "Remove Linebreaks",
value = true,
},
}
return conf
end
aegisub.register_filter(script_name, script_description, 1, main, conf)