Here you can find some information about AviSynth v3.0. The first alpha is not ready yet, so this page is mainly for developers and people who are just interested.
AviSynth v3.0 is a powerful frameserver for Windows and Linux, and it is a complete rewrite of AviSynth v2.5, written from scratch by Bidoche (David Pierre), Kurosu, Caro and others. Additional information can be found here: [1]. I put together a small faq.
Q1) The forums are silent about AviSynth v3.0. Where is the progress discussed?
The progress is mainly discussed on IRC: irc.freenode.org #avisynth. So, if you want to follow the progress, you know where to look :)
Q2) What is AviSynth v3.0 about and what are the main differences with v2.5?
The main differences are:
1) User features:
- Linux port:
AviSynth v3.0 will also work on Linux. v3.0 is not relying on vfw anymore (although it can be used when possible). It is made in such a way, that new APIs can be added to the core, like ffmpeg and gstreamer. The former is already working (except that audio seeking doesn't work). The latter is implemented in the Linux version.
- It's easy to add other color formats (in the core or as separate plugin). Currently, it provides 3 additional color formats (compared to AviSynth v2.5):
YV24, a 4:4:4 YUV planar color format, and RGB45 and YV45 which are 15 bits depth versions of RGB24 and YV24 (NB: even though RGB45 is 8 byte aligned, the extra is not alpha, just garbage).
- The grammer is changed. "if" statements are for example included.
- Dsynth will be included, which allows for direct streaming (for video and audio) whenever possible. Filters which allow this: AviSource(), Trim() and
(Un)alignedSplice(). [it's not finished yet.]
2) Dev features:
- v3.0 is built using VC7.1 or MinGW?, using STLPort as standard library, boost libraries and Freetype. Inline assembly code is replaced by NASM. See Q4 for further info.
- Improved memory management, ie not use more memory than necessary and do the best of the available when it's short.
- Multi instance awareness: v3.0 will behave correctly when multiple scripts are loaded at once, they will share memory, and some filters (multiple avisource on same file) may even resolve themselves into a fusioned clip.
- Improved parser: the parser will include the widely requested flow control structs (if then else, for, while). It will add two new types : frame and function.
- It will include GUI hooks so they can retrieve info about filters directly from avisynth and its plugins.
Q3) When is the first alpha test version ready?
It will take a while before the first alpha version is ready for testing.
The color conversions are partly implemented (the ones in AviSynth v2.5 are). The resizers should be implemented and plugins should be able to load correctly. Plus a bunch of other things should be done before the first alpha release. On the positive side, it is compilable under Linux!
If you want to help testing gstreamersource, read the following post: http://forum.doom9.org/showthread.php?p=720266#post720266 for the necessary information.
Q4) How should I compile it?
Document can be found in sourceforge: [compiling it on Windows and Linux]. [French installation guide].
See also (french)
http://www.unite-video.com/phpbb/viewtopic.php?p=68525#68525 (under Windows)
http://www.unite-video.com/phpbb/viewtopic.php?p=68206#68206 (under Linux)