1
0
Fork 0
Go to file
arch1t3cht e7e87f5584 Merge branch 'xa2-ds' into feature 2022-08-16 21:04:44 +02:00
.github/workflows ci: Don't abort if one of the matrix runs fails 2022-07-02 19:58:43 -07:00
automation Lua docs: Typo fix 2022-08-13 21:00:13 +02:00
docs Modify aegisub_convert_docs.pl to produce a static mirror suitable for serving on a web site 2012-09-03 17:26:49 -07:00
libaegisub XAudio PR: Revert some changes and fix on linux 2022-08-16 21:03:59 +02:00
packages Add vapoursynth video provider 2022-08-16 19:22:54 +02:00
po Polish translation corrections (#130) 2021-05-23 17:33:04 -04:00
src Merge branch 'xa2-ds' into feature 2022-08-16 21:04:44 +02:00
subprojects Merge branch 'vapoursynth' into feature 2022-08-16 19:57:22 +02:00
tests Implement wangqr Audio Changes: 2022-08-10 21:09:41 +08:00
tools macos: attempt to fix the installer build 2022-07-02 19:58:43 -07:00
.gitignore Merge branch 'vapoursynth' into feature 2022-08-16 19:57:22 +02:00
LICENCE Move everything up a level since the root dir no longer has stuff 2014-03-11 12:14:57 -07:00
README.md README: lua_api, wangqr_time_video, and the zlib linker bug 2022-08-01 22:15:22 +02:00
meson.build Merge branch 'xa2-ds' into feature 2022-08-16 21:04:44 +02:00
meson_options.txt Merge branch 'xa2-ds' into feature 2022-08-16 21:04:44 +02:00

README.md

arch1t3cht's Aegisub "fork"

Go here for the new features.

Don't we have enough Aegisub forks already??

We absolutely do, and I'm aware that adding another one doesn't sound like a good idea on paper. However,

  • None of the existing forks are completely satisfying at the moment:

    • wangqr's fork is actively maintained, but focussing more on stability. It's missing most of the modern features.
    • AegisubDC has the most modern features (in particular video-panning), but is Windows-only and not actively maintained anymore.
    • The TypesettingTools fork is the one that will one day become the upstream version and builds relatively effortlessly on all operating systems, but at the moment it's not moving much. It's the base for this fork, and I hope to one day merge most of these additions into it.
  • Only PR'ing the changes in here to various forks would cause even more chaos

  • I try to convince myself that this isn't really a "fork" in the traditional sense - one which aims to provide extended support and stability fixes. It's a collection of new feature additions which I built myself, together with some of the most important new features floating around other forks.

    While this is usually also the version of Aegisub I'm currently using, I make absolutely no promises on stability. Don't use this version if you're just looking for any version of Aegisub - this is mostly intended for typesetting and other advanced usage.

Organization

Being a collection of different feature additions, this repository consists of a set of branches for different features, so that they can easily be merged into other repositories. The feature branch merges together all the features I deem as currently usable. Due to the structure of the repository, I will be force-pushing to this branch and some of the individual branches very frequently, so they're not ideal for basing further branches on.

The cibuilds branch makes some CI builds of snapshots of feature at relevant points in time.

Branch/Feature list

  • folding: Add the ability to visually group and collapse lines in the subtitle grid
  • lua_api: Add new functions to the Lua automation API, like controlling the selection or cursor in the text edit box
  • vector_clip_actions: Make the different modes of the vector clip tool (lines, bezier curves, adding points, etc) bindable to hotkeys
  • color_picker_fix2: Add an option (under "Interface") to restrict the color picker to the window, which fixes the color picker on Linux in a lot of cases.
  • avisynth: Reenable Avisynth support on Windows (Still occasionally crashes)
  • bugfixes: Various fixes, mostly relevant for compilation
  • misc_dc: Miscellaneous changes taken from AegisubDC
  • video_panning_feature: Merge moex3's video zoom and panning, with an OSX fix and more options to control zoom behavior
  • spectrum-frequency-mapping: Merge EleonoreMizo's spectrum display improvements, and also make Shift+Scroll vertically zoom the audio display
  • wangqr_time_video: Merge wangqr's feature adding a tool for timing subtitles to changes in the video

Troubleshooting

Building fails with a "CMake sandbox violation"

This is an upstream bug in meson. For now, you need to downgrade meson using pip install meson==0.62.2.

Aegisub on Linux doesn't recognize my GTK theme

This is probably because you're building with wxgtk2. Building with wxgtk3 fixes this, but causes some problems of its own (notably the broken color picker, occasional crashes when opening file dialogs from automation scripts, and general layouting issues).

The exact way of switching depends on your Linux distribution, but essentially you need to ensure that wx-config or the next best variant of it points to wxgtk3. If it points to wxgtk2 by default and deinstalling wxgtk2 isn't an option, you can also temporarily move it out of the path. Then, fully reconfigure meson using meson configure --clearcache and meson setup --reconfigure.

I get errors like "Option not found" after merging one of these branches

The changes to default_config.json or similar files weren't detected by meson due to missing regen dependencies. You can either merge the bugfixes branch or rebuild from scratch.

The video is desynced / Frames don't appear at the right time

This is probably due to the ffms2 seeking bug (#394). On Windows, this shouldn't happen anymore. On Linux, you need to install the latest git version of ffms2 - for example the ffms2-git AUR package on Arch linux, or just compile it yourself.

On Windows: Aegisub crashes whenever I open a video

If you're compiling yourself, try adding --force-fallback-for=zlib to the meson options.

Aegisub

For binaries and general information see the homepage.

The bug tracker can be found at https://github.com/Aegisub/Aegisub/issues.

Support is available on Discord or IRC.

Building Aegisub

Windows

Prerequisites:

  1. Visual Studio (Community edition of any recent version is fine)
  2. The June 2010 DirectX SDK (the final release before DirectSound was dropped)
  3. Python 3
  4. Meson
  5. CMake
  6. Powershell execution policy set to Unrestricted

There are a few optional dependencies that must be installed and on your PATH:

  1. msgfmt, to build the translations
  2. InnoSetup, to build the regular installer
  3. 7zip, to build the regular installer
  4. Moonscript, to build the regular installer

All other dependencies are either stored in the repository or are included as submodules.

Building:

  1. Clone Aegisub's repository: git clone https://github.com/TypesettingTools/Aegisub.git
  2. From the Visual Studio "x64 Native Tools Command Prompt", generate the build directory: meson build -Ddefault_library=static (if building for release, add --buildtype=release)
  3. Build with cd build and ninja

You should now have a binary: aegisub.exe.

Installer:

You can generate the installer with ninja win-installer after a successful build. This assumes a working internet connection and installation of the optional dependencies.

You can generate the portable zip with ninja win-portable after a successful build.

OS X

A vaguely recent version of Xcode and the corresponding command-line tools are required.

For personal usage, you can use pip and homebrew to install almost all of Aegisub's dependencies:

pip3 install meson
brew install cmake ninja pkg-config  libass boost zlib ffms2 fftw hunspell
export LDFLAGS="-L/usr/local/opt/icu4c/lib"
export CPPFLAGS="-I/usr/local/opt/icu4c/include"
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"

Once the dependencies are installed, build Aegisub with meson build && meson compile -C build.

Build dmg

meson build_static -Ddefault_library=static -Dbuildtype=debugoptimized -Dbuild_osx_bundle=true -Dlocal_boost=true
meson compile -C build_static
meson test -C build_static --verbose
meson compile osx-bundle -C build_static
meson compile osx-build-dmg -C build_static

Updating Moonscript

From within the Moonscript repository, run bin/moon bin/splat.moon -l moonscript moonscript/ > bin/moonscript.lua. Open the newly created bin/moonscript.lua, and within it make the following changes:

  1. Prepend the final line of the file, package.preload["moonscript"](), with a return, producing return package.preload["moonscript"]().
  2. Within the function at package.preload['moonscript.base'], remove references to moon_loader, insert_loader, and remove_loader. This means removing their declarations, definitions, and entries in the returned table.
  3. Within the function at package.preload['moonscript'], remove the line _with_0.insert_loader().

The file is now ready for use, to be placed in automation/include within the Aegisub repo.

License

All files in this repository are licensed under various GPL-compatible BSD-style licenses; see LICENCE and the individual source files for more information. The official Windows and OS X builds are GPLv2 due to including fftw3.