-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does Automation/Select overlaps work for you? #197
Comments
This is an issue with Debian's Aegisub package. Aegisub needs luajit to be compiled with the Lua 5.2 compat flag, which Debian's luajit does not seem to have. This results in the To fix this you would need to compile Aegisub yourself with |
Sorry for commenting after the bug was closed, but I'm the Debian Maintainer for Aegisub and I want to clarify this issue because I keep getting e-mails about this. |
Open .srt file, menu "Automation" > Select overlaps
cause
Lua reported a runtime error
on Linux, Aegisub 3.2.2Detail
Is anyone capable to fix it, i am willing to pay for that fix. Thank you
The file:
https://github.com/TypesettingTools/Aegisub/blob/master/automation/autoload/select-overlaps.moon
(in /usr/share/aegisub/automation/autoload/select-overlaps.moon)
ChatGPT suggested this modification:
Replace:
[prepare i, line for i, line in ipairs subs when is_dialogue line]
by:
[prepare i, line for i, line in ipairs(subs) when is_dialogue(line)]
or by:
[prepare(i, line) for i, line in ipairs(subs) when is_dialogue(line)]
saying:
But it does not work. Do you have please idea what to try? I am trying to detect and fix subtitle overlaps in several .ass files.
An issue of the luajit and the current Aegisub version?
The text was updated successfully, but these errors were encountered: