JpegSource

From Avisynth wiki
Revision as of 22:48, 13 April 2014 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Abstract
Author SEt
Version 2014.1.5
Download JpegSource.7z
Category Source filters
License free for non-commercial use, closed source.


Contents

Description

An advanced JPEG decoder for AviSynth 2.6.


Requirements:

- AviSynth 2.6.0 Alpha5 or later
- Supported color formats: Y8, YV12, YV16, YV24, YV411


Syntax and Parameters

JpegSource (string file, int "rec", int "length", float "fps_num", int "fps_den")


string  file =
Path to image file. Path can be omitted if the script is in the same folder as the image file.


int  rec = 1
Number of reconstruction passes.


int  length = 1000
Clip length in frames.


float  fps_num = 24
FPS numerator.


int  fps_den = 1
FPS denominator.


Examples

JpegSource with default settings:

JpegSource("image.jpg", rec=1, length=1000, fps_num=24, fps_den=1)


JpegSource with 23.976 framerate output:

JpegSource("image.jpg", fps_num=24000, fps_den=1001)


Changelog

Version       Date            Changes
2014.1.5 01/05/2014 initial release


External Links

Personal tools