HOME

TheInfoList



OR:

AviSynth is a
frameserver A Frameserver is any program that acts as a media source in the process called ''frameserving'', which transfers digital video data from one computer program to another without intermediate files. The program that receives the data – the ''frame ...
program for
Microsoft Windows Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for serv ...
,
Linux Linux ( or ) is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged as a Linux distribution, which ...
and
macOS macOS (; previously OS X and originally Mac OS X) is a Unix operating system developed and marketed by Apple Inc. since 2001. It is the primary operating system for Apple's Mac computers. Within the market of desktop and lapt ...
initially developed by Ben Rudiak-Gould, Edwin van Eggelen, Klaus Post, Richard Berg and Ian Brabham in May 2000 and later picked up and maintained by the open source community which is still active nowadays. It is
free software Free software or libre software is computer software distributed under terms that allow users to run the software for any purpose as well as to study, change, and distribute it and any adapted versions. Free software is a matter of liberty, no ...
under
GNU GPL The GNU General Public License (GNU GPL or simply GPL) is a series of widely used free software licenses that guarantee end users the four freedoms to run, study, share, and modify the software. The license was the first copyleft for general us ...
license.


Scripting video editor

AviSynth acts as a
non-linear video editor Non-linear editing is a form of offline editing for audio, video, and image editing. In offline editing, the original content is not modified in the course of editing. In non-linear editing, edits are specified and modified by specialized sof ...
controlled entirely by scripting (without a
GUI The GUI ( "UI" by itself is still usually pronounced . or ), graphical user interface, is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, inste ...
). It emulates an AVI video file (or
WAV Waveform Audio File Format (WAVE, or WAV due to its filename extension; pronounced "wave") is an audio file format standard, developed by IBM and Microsoft, for storing an audio bitstream on PCs. It is the main format used on Microsoft Wind ...
audio file) as seen by the
VFW The Veterans of Foreign Wars (VFW), formally the Veterans of Foreign Wars of the United States, is an organization of US war veterans, who, as military service members fought in wars, campaigns, and expeditions on foreign land, waters, or ...
downstream application, which is typically a media player,
video editing software Video editing software, or a video editor is software used performing the post-production video editing of digital video sequences on a non-linear editing system. It has replaced traditional flatbed celluloid film editing tools and analog video ta ...
, or an encoder. AviSynth is built upon ''filters'', which are much like DirectShow filters, but with a different binary interface. Filter capabilities include cropping,
deinterlacing Deinterlacing is the process of converting interlaced video into a non-interlaced or Progressive scan, progressive form. Interlaced video signals are commonly found in analog television, digital television (HDTV) when in the 1080i format, some D ...
,
inverse telecine Telecine ( or ) is the process of transferring film into video and is performed in a color suite. The term is also used to refer to the equipment used in the post-production process. Telecine enables a motion picture, captured originally on fi ...
, working with still
image An image is a visual representation of something. It can be two-dimensional, three-dimensional, or somehow otherwise feed into the visual system to convey information. An image can be an artifact, such as a photograph or other two-dimensiona ...
s, doing basic
color grading Color grading is a post-production process common to filmmaking and video editing of altering the appearance of an image for presentation in different environments on different devices. Various attributes of an image such as contrast, color, s ...
, reducing video noise, and many other things. AviSynth also performs traditional
video editing Video editing is the manipulation and arrangement of video shots. Video editing is used to structure and present all video information, including films and television shows, video advertisements and video essays. Video editing has been dramaticall ...
tasks like cutting, trimming and re-sequencing segments. For example, consider the script "myAvi.avs" (just a plain text-file saved with the extension "avs")
 AviSource("myAvi.avi")
 Crop(0, 0, 320, 240)
 Blur(0.1)
This script file can be opened in most media players (such as
Windows Media Player Windows Media Player (WMP) is the first media player and media library application that was developed by Microsoft for playing audio, video and viewing images on personal computers running the Microsoft Windows operating system, as well as on ...
). The program will play the video file "myAvi.avi" cropped down to its top-left 320
pixels In digital imaging, a pixel (abbreviated px), pel, or picture element is the smallest addressable element in a raster image, or the smallest point in an all points addressable display device. In most digital display devices, pixels are the sm ...
by 240 pixels and blurred by a small amount. Operations occur in sequential order, so the cropping occurs first, then the blurring. Technically, AviSynth constructs a
filter graph A filter graph is used in multimedia processing - for example, to capture video from a webcam. Filters take input, process it (or change the input), and then output the processed data. For example: a video codec takes raw uncompressed video and ...
(like
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washing ...
GraphEdit GraphEdit is a utility which is part of the Microsoft DirectShow SDK. It is a visual tool for building and testing filter graphs for DirectShow. Filters are displayed as boxes, with a text caption showing the name of the filter. Pins appear as sm ...
but with added capabilities), controlled by ''scripts'' written in th
AviSynth scripting language
Its functionality can be extended through the use of third-party filters known as plugins. An external plugin list is maintained a
AviSynth Filter Collection
AviSynth is a
frameserver A Frameserver is any program that acts as a media source in the process called ''frameserving'', which transfers digital video data from one computer program to another without intermediate files. The program that receives the data – the ''frame ...
– the calling program ''requests'' audio/video frames and the script ''serves'' them. The calling program can call frames in any order, allowing it to pause, jump forward or backward etc., just as with a physical file.


AviSynth scripting language

The scripting language is a dataflow language: a
programming paradigm Programming paradigms are a way to classify programming languages based on their features. Languages can be classified into multiple paradigms. Some paradigms are concerned mainly with implications for the execution model of the language, suc ...
that describes a
directed graph In mathematics, and more specifically in graph theory, a directed graph (or digraph) is a graph that is made up of a set of vertices connected by directed edges, often called arcs. Definition In formal terms, a directed graph is an ordered pa ...
of the data flowing between operations. It lacks some
procedural programming Procedural programming is a programming paradigm, derived from imperative programming, based on the concept of the ''procedure call''. Procedures (a type of routine or subroutine) simply contain a series of computational steps to be carried ...
control structures, but it contains many features familiar to programmers, including variables, distinct datatypes, conditionals, and complex expressions. The language works primarily with the audio/video ''clip'' as a built-in data type. The clip is a complex structure with many attributes such as width, height and duration. The language also has several other more standard data types: ''int'', ''float'', ''bool'' and ''string''. These can be used to perform calculations, decisions, and write text such as
subtitles Subtitles and captions are lines of dialogue or other text displayed at the bottom of the screen in films, television programs, video games or other visual media. They can be transcriptions of the screenplay, translations of it, or informati ...
to the video. The script has a single ''return value'', which is the audio and video 'seen' by the program running the script. This is normally the last line of the script, but a
return statement In computer programming, a return statement causes execution to leave the current subroutine and resume at the point in the code immediately after the instruction which called the subroutine, known as its return address. The return address is sav ...
may be inserted at any point.


"Hello World"

This example is a "Hello World" program.
 BlankClip()
 Subtitle("Hello, world!")
If the above text is entered into a text file with the .avs extension, it can be opened in
Windows Media Player Windows Media Player (WMP) is the first media player and media library application that was developed by Microsoft for playing audio, video and viewing images on personal computers running the Microsoft Windows operating system, as well as on ...
or any of the other programs in the list below, and a video containing the words "Hello, world!" will be displayed. The function creates a new video. The parentheses at the end of the word are optional, since no arguments are being passed, but are given in this case to indicate it is a function and not a variable. The function draws the words "Hello, world!" on top of the previously-created blank video. Although both functions both accept many more arguments (for example, controlling the size and length of the blank video, and the positioning, font, and color of the subtitle), this example leaves them out; the functions use built-in default arguments. Avisynth uses
syntactic sugar In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. It makes the language "sweeter" for human use: things can be expressed more clearly, more concisely, or in an ...
that makes simple scripts far easier to write: an implicit variable called . Without implicit variables, the above script would have to be written like this:
 Last = BlankClip()
 Last = Last.Subtitle("Hello, world!")
 return Last
or like this:
 A = BlankClip()
 B = A.Subtitle("Hello, world!")
 return B
Explicit clip variables are normally only used for functions involving more than one clip:
 A = BlankClip()
 B = A.Subtitle("Hello, world!")
 return Dissolve(A, B, 30) # 30-frame cross fade 


Video-processing

This example takes an actual video, applies some simple processing, and returns it to the output.
 AviSource("C:\Example.avi")
 ReduceBy2()
 GreyScale()
The function is used to load an AVI video from a real location. To open other media types, the function could be used instead. divides the vertical and horizontal size of the video in half, and removes all color information. AviSynth filters work in many
RGB The RGB color model is an additive color model in which the red, green and blue primary colors of light are added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three addi ...
and
YUV YUV is a color model typically used as part of a color image pipeline. It encodes a color image or video taking human perception into account, allowing reduced bandwidth for chrominance components, compared to a "direct" RGB-representation. H ...
color space A color space is a specific organization of colors. In combination with color profiling supported by various physical devices, it supports reproducible representations of colorwhether such representation entails an analog or a digital represent ...
s to allow all kinds of video input and output. Certain functions only work on specific
color spaces A color space is a specific organization of colors. In combination with color profiling supported by various physical devices, it supports reproducible representations of colorwhether such representation entails an analog or a digital represent ...
, requiring conversion – for example, most videos are distributed in a
YUV YUV is a color model typically used as part of a color image pipeline. It encodes a color image or video taking human perception into account, allowing reduced bandwidth for chrominance components, compared to a "direct" RGB-representation. H ...
color space, but most
color correction Color correction is a process used in stage lighting, photography, television, cinematography, and other disciplines, which uses color gels, or filters, to alter the overall color of the light. Typically the light color is measured on a scale kno ...
is done in one of the
RGB The RGB color model is an additive color model in which the red, green and blue primary colors of light are added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three addi ...
spaces. A color-correcting script might look like this:
 DirectShowSource("movie.mp4") # YV12 color space
 ConvertToRGB32
 RGBAdjust(1.0, 0.95, 1.0) # decrease Green channel
 ConvertToYV12


User defined

The AviSynth scripting language allows for users to define their own functions. This is an example of a function that allows you to dissolve from one clip to another without damaging interlacing lines.
  clip1 = AVISource("video1.avi")
  clip2 = AVISource("video2.avi")
 
  # call the user-defined function which is defined below:
  interlaced_dissolve(clip1, clip2, 30)    
  # ...the script returns the above result to the calling program  
  
  # user-defined function: 
  # dissolve from clip1 to clip2 over 30 frames
  function interlaced_dissolve(clip clip1, clip clip2, int iter) 


AviSynth 3.0 and AviSynth+

AviSynth 3.0 was a complete rewrite of AviSynth 2.x, and aimed to overcome the limitations of AviSynth 2.x. Adding improvements such as an abstracted
color space A color space is a specific organization of colors. In combination with color profiling supported by various physical devices, it supports reproducible representations of colorwhether such representation entails an analog or a digital represent ...
model, in which new color spaces (including two with 45-bit depth) could be supported through a plug-in mechanism, better cache management for better performance, and using
Ruby A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum ( aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sa ...
rather than the homegrown language employed in current versions. AviSynth 3.0 was to be available for other operating systems than
Windows Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for serv ...
, instead relying on
GStreamer GStreamer is a pipeline-based multimedia framework that links together a wide variety of media processing systems to complete complex workflows. For instance, GStreamer can be used to build a system that reads files in one format, processes them, ...
, extending support to platforms such as
Linux Linux ( or ) is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged as a Linux distribution, which ...
,
Mac OS X macOS (; previously OS X and originally Mac OS X) is a Unix operating system developed and marketed by Apple Inc. since 2001. It is the primary operating system for Apple's Mac (computer), Mac computers. Within the market of ...
and
BSD The Berkeley Software Distribution or Berkeley Standard Distribution (BSD) is a discontinued operating system based on Research Unix, developed and distributed by the Computer Systems Research Group (CSRG) at the University of California, Berk ...
. Development has been stalled since August 2007. The most current and modern version of AviSynth today i
AviSynth+
originally a fork of the official AviSynth 2.xx, but AviSynth+ has since gained widespread recognition and has become the go-to implementation. It rewrote most of the original AviSynth code, and introduced long-sought features such as 64-bit support, multithreading, deep color spaces, support for recent compilers, new scripting constructs (new control-flow constructs such as loops), and increased performance in many areas. At the same time it retained 100% compatibility to the AviSynth 2.5/2.6 series, both for filters and host applications. At the time of writing (2020-12), it is also actively maintained.


AviSynth for non-Windows operating systems

AviSynth 2.xx may be used under operating systems other than Windows through the use of
Wine Wine is an alcoholic drink typically made from fermented grapes. Yeast consumes the sugar in the grapes and converts it to ethanol and carbon dioxide, releasing heat in the process. Different varieties of grapes and strains of yeasts are m ...
. To work on scripts
VirtualDub VirtualDub is a free and open-source video capture and video processing utility for Microsoft Windows written by Avery Lee. It is designed to process linear video streams, including filtering and recompression. It uses AVI container format to ...
/
VirtualDubMod VirtualDubMod was an open-source video capture and processing tool for Microsoft Windows, based on Avery Lee's VirtualDub. History Version 1.5.10.2 (build 2542) was released on 21 February 2006. VirtualDub's author, which hosts VirtualDubMod's ...
can be used as on Windows. To interface between AviSynth under Wine and for example
FFmpeg FFmpeg is a free and open-source software project consisting of a suite of libraries and programs for handling video, audio, and other multimedia files and streams. At its core is the command-line ffmpeg tool itself, designed for processing of vid ...
running on a Linux host, Avs2YUV can be used. Avs2YUV is a
Windows Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for serv ...
command line program that is run under Wine and renders the output of an AviSynth script to
stdout In computer programming, standard streams are interconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin ...
that is then piped to FFmpeg. Avs2YUV also supports writing to a
named pipe In computing, a named pipe (also known as a FIFO for its behavior) is an extension to the traditional pipe concept on Unix and Unix-like systems, and is one of the methods of inter-process communication (IPC). The concept is also found in OS/2 and ...
. There is a Linux port of AviSynth called AvxSynth.


AviSynth compatible programs

In addition, several programs have now been created which accept ''only'' AviSynth scripts as input - thereby simplifying the programs themselves but giving users the full power of AviSynth for input. There are also several batch encoding applications that tie together AviSynth with command line audio and video encoders and muxers to provide an all-in-one, modular, customizable video encoding application. MeGUI is an example of this kind of application. Although AviSynth scripts are meant to be easily opened in simple text editing programs, there are several editors meant especially for editing AviSynth scripts such a
AvsPMod


See also

*
List of video editing software The following is a list of video editing software. The criterion for inclusion in this list is the ability to perform non-linear video editing. Most modern transcoding software supports transcoding a portion of a video clip, which would count as ...


References


External links

* AviSynth home page
(English)(Japanese)

AviSynth Filter Collection

Doom9's AviSynth Forums

AviSynth 3.0 development homepage
{{DEFAULTSORT:Avisynth Free video software