change name and description of scripts, update readme

This commit is contained in:
odrling 2019-08-02 22:45:47 +02:00
parent a85c477e08
commit b56b46cde9
3 changed files with 27 additions and 5 deletions

View file

@ -1,3 +1,25 @@
# amoegisub
my aegisub scripts
my aegisub scripts
Split karaoke line
------------------
Splits a karaoke line where the `{split}` marker is set while keeping timing of the karaoke intact.
In other words, it does what you expected the split function to do in a karaoke.
Duetto Meika
------------
This macro lets you change the style used in a line without having to put the tags manually.
So if I've defined the styles Chris and Hibiki (with their own colors) in my subtitles the following line:
shimese {s:Chris}atsuki yume no {s:Hibiki}makuake wo
becomes
shimese {\c&H003D45FF&\3c&H00020261&\4c&H00020261&}atsuki yume no {\c&H002092FD&\3c&H00003364&\4c&H00003364&}makuake wo

View file

@ -1,7 +1,7 @@
local tr = aegisub.gettext
script_name = tr"DUETTO MEIKA"
script_description = tr"changes the styles of a line where there is a marker"
script_name = tr"Duetto Meika"
script_description = tr"The ultimate tool for karaoke duets"
script_author = "amoethyst"
function duetto(subs, sel)

View file

@ -1,7 +1,7 @@
local tr = aegisub.gettext
script_name = tr"Karaoke split line"
script_description = tr"split line at marker according to ktags"
script_name = tr"Split karaoke line"
script_description = tr"Split line at {split} marker according to ktags"
script_author = "amoethyst"
script_version = "1.0"