JpegSource
From Avisynth wiki
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:
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.
- string file =
- int rec = 1
- Number of reconstruction passes.
- int rec = 1
- int length = 1000
- Clip length in frames.
- int length = 1000
- float fps_num = 24
- FPS numerator.
- float fps_num = 24
- int fps_den = 1
- FPS denominator.
- int fps_den = 1
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
- Doom9 Forum - JpegSource discussion.