R50 is a pure regression fix release and has nothing new of interest. Install it now!
R51 will probably have lots of changes merge and maybe there’ll be a new audio test build soon too.
R50 is a pure regression fix release and has nothing new of interest. Install it now!
R51 will probably have lots of changes merge and maybe there’ll be a new audio test build soon too.
There’s a new release that fixes all known R48 regressions and bugs. Not much else to say about it really. One notable thing is that I got myself a raspberry pi recently so now I can actually test compilation on ARM easily and it won’t be broken all the time. I guess that’s interesting for some people.
Finally the first test version of audio support is ready and this post will describe how it works. Spoiler: It doesn’t work like in Avisynth.
In Python scripts audio nodes are just another unique type. They aren’t stuck together with a video track like in Avisynth. This can be both an advantage and a disadvantage, for example cutting audio and video at the same time by frame numbers will currently require a bit of user scripting. On the other hand with the correct helper functions it’ll be possible to manipulate multiple audio and video tracks as a group easily. Audio also always has a constant format unlike video.
Feedback and downloads are on the Doom9 forum as usual for highly experimental things.
import vapoursynth as vs
audio = vs.core.bas.Source("somefile.mp3", track=-1)
video = vs.core.std.BlankClip()
video.set_output(0)
audio.set_output(1)
Currently the API isn’t completely stable but only minor changes are expected at this point so starting to port plugins. The only mildly breaking change is that the clip type in function argument strings now has been renamed to vnode and obviously the new anode type has been introduced which may confuse existing software tries to parse the argument strings.
The best way to think of audio nodes is as a type completely separate from video nodes that only happen to share some functions to manipulate them. For example you can’t mix audio and video nodes in the same VSMap key or in any other context.
After several weeks of testing R48 is finally done. As you may suspect from the title the biggest change this time is optimizations. Now most internal functions have proper AVX2 optimizations and in addition to that the Expr filter was greatly improved and can now rewrite and optimize expressions much better. In addition to that a lot of bugs were fixed and the installer got a few more options. Users of R47 should definitely upgrade.
Since R46 was a release with some big changes in regards to the installer this one simply cleans up all the minor issues that were found. And one annoying zimg bug that could cause a crash on some invalid conversions.
Breaking changes:
The yearly slowdown is over so now it’s time for a maintenance release which will probably still manage to introduce a lot of new issues due to the windows installer changes. Here’s a list of the main changes:
As usual there are also a few possibly breaking changes:
I finally made a new release. It’s extremely not so exciting maintenance and switches to Python 3.7 on windows. VSRepo also happens to be included just as an experiment so go try it out for all your plugin and script installation needs.
I’ve spent the past two weeks writing a simple package manager for VapourSynth called VSRepo. It can already install most common plugins and scripts with all of their dependencies. Installing havsfunc is no longer a treasure hunt across the internet!
Go visit the doom9 thread where the link to the latest test versions are posted if you want to try it out or help add more plugins and scripts. The plan is to include it in the installer with the next VapourSynth release.
There’s a new maintenance release and it updates a few things and fixes some minor issues. Upgrading is recommended. The more interesting news will be in the next post.