Download VirtualDub 1.9.11 build 32842 / 1.10.0 build 33848

Spread the love

On Friday, both a new stable and development version of VirtualDub were released. This program is for recording and editing video. VirtualDub does not have an extensive editor, but is more intended to be used in combination with programs such as Adobe Premiere. Version 1.9.11 contains only one bug fix, but 1.10.0 contains several new features, including a multithreaded filter system and video compression and support for external encoders.

VirtualDub 1.9.11 and 1.10.0 released

There are two new versions of VirtualDub now available through SourceForge on the download page.

The first release is a new stable release, 1.9.11. This release contains only one new change over 1.9.10, which is the addition of a filter compatibility mode. When I rewrote parts of the filter system early in the 1.9.x series to support more powerful filters, I hadn’t realized that I had broken some filters that relied on the source and output buffer addresses being static (which I think was stated in early filter SDKs). Originally I only knew about two filters that had this issue, but after a few more were discovered I decided a backwards compatibility flag had to be added. In 1.9.11, you can now flag a filter instance as needing static buffers, in which case the filter system will allocate additional bounce buffers and copy frames in and out. This fixes filters that had frame glitch issues, at the cost of a slight amount of overhead.

1.10.0 is the new experimental version and is, for lack of a better description, flushing out everything I had in my dev branch. (The version number is a bit goofy, but I couldn’t bring myself to call it 2.0.) It contains all fixes in the stable branch through 1.9.11, as well as new features:

  • Multithreaded filter system. This is enabled via Options | Preferences | Threading, and it allows multiple filters in the same chain to execute concurrently. For API reasons it isn’t possible to run the same instance in parallel, so this won’t help if you only have one filter, but if you have more than one, they can run in parallel and make use of multiple cores. This can work with any filter, but it may break some filters that were relying on back channels to pass data (thus the option).
  • Multithreaded video compression. Similarly to filters, codecs also generally can’t be run in parallel without special support from the codec. However, a special case is codecs that produce a format with only key frames, such as Huffyuv. 1.10.0 now allows the codec thread count to be raised above 1 for this case to use multiple CPU cores for compression.
  • Raw video support. 1.10.0 now includes input and output modules for video streams written as a stream of raw frames. Almost any format supported by the internal blitter library can be read or written, and thus encoding, color space, scan line alignment, and orientation can all be specified.
  • Enhanced color space support. The internal blitter library now supports a wider variety of formats, including full-range YCbCr and planar Rec. 709 encodings. Support for these is limited but will be expanded over time; the “alias format” filter allows some types of mistagged formats to be corrected such that conversions for display or encoding can work properly. The Direct3D9 display driver has also been updated to directly support these formats without an intermediate conversion.
  • External encoder support. 1.10.0 can now use external programs for encoding and multiplexing through command-line templates and stdin/stdout data transfer, without requiring support for a VirtualDub-specific plugin API. With appropriate encoding programs, this allows encoding to formats that aren’t internally supported, such as H.264. This also makes it easier to encode to custom formats, as all that is required is a CLI program that accepts raw data through stdin.

Full change lists for the two versions after the jump. Happy Holidays, everyone!

The following downloads are available:
VirtualDub 1.9.11 build 32842 (32bit)
VirtualDub 1.9.11 build 32842 (64bit)
VirtualDub 1.10.0 build 33848 (32bit)
VirtualDub 1.10.0 build 33848 (64bit)

Version number 1.9.11 build 32842 / 1.10.0 bu
Release status Final
Operating systems Windows 7, Windows 7 x64, Windows 2000, Windows XP, Windows Server 2003, Windows XP x64, Windows Server 2003 x64, Windows Vista, Windows Vista x64, Windows Server 2008
Website SourceForge
Download
License type GPL
You might also like