Book Image

Learning VirtualDub: The Complete Guide to Capturing, Processing and Encoding Digital Video

Book Image

Learning VirtualDub: The Complete Guide to Capturing, Processing and Encoding Digital Video

Overview of this book

VirtualDub is one of the most popular video processing applications for Windows. As an open source application, it's free, and is constantly updated and expanded by an active community of developers and experts. VirtualDub is particularly popular for capturing video from analogue sources such as video tape, cleaning up the image and compressing it ready for distribution over the Internet. This book provides a rapid and easy to use tutorial to the basic features of VirtualDub to get you up and running quickly. It explains how to capture great quality video from various sources, use filters to clean up the captured image and add special effects. The book also shows how to use VirtualDub to cut and paste video to remove or insert sequences, including removing ad breaks or trailers. It goes on to cover the art of effective encoding and compression, so you end up with great quality videos that won't hog your bandwidth forever. VirtualDub is the fastest and most effective way to capture, process and encode video on your PC. This book gets you started fast, and goes on to give you full control of all the features of this legendary tool.
Table of Contents (14 chapters)
Learning VirtualDub
Credits
About the Authors
Introduction

Chapter 9. Frameserving

Frameserving is the simple concept of serving, passing, and feeding uncompressed frames to another application. For instance, if you have a video-processing application (it can even be a player) that cannot decode MPEG-1 files, you can use a frameserver to copy the frames from an MPEG-1 file to the application. This is usually done by writing a small dummy file that contains data specific to the frameserver, but is visible as a large uncompressed file to other applications. Most frameservers available can also process the video before passing it to the next application down the chain.

In this chapter, we will explore two frameservers—the one provided with VirtualDub and a second one called AviSynth. By the end of the chapter, you will know:

  • How to install and serve frames from MPEG-1 or AVI files through the VirtualDub frameserver

  • How to use AviSynth to serve frames from any file format your computer can decode, to any application (including VirtualDub)

  • How to use AviSynth...