Skip to content
Anime4000 edited this page Apr 18, 2015 · 3 revisions

Welcome to the IFME wiki!

Help and Tutorial

AviSynth

Starting from version 4.9.5, IFME support to render AviSynth Scripts.

What is AviSynth?

Here very simple explanation.

AviSynth is a Front-End video that contain script which to process video such as De-interlaced, Crop, High Frame Rate and etc.., you can preview avs script by opening via MPC-HC (make sure K-Lite Codec Pack Mega, Option 9 is selected and installed)

There are have two type of AviSynth, Single Thread (ST) and Multi Thread (MT), most AviSynth plugins using MT.

Image Sequence

You can convert images into video via AviSynth, here is how to do it:

for example purpose, image file name: img_sequence_000000.tiff

  1. First create a empty file, simply open Notepad++ for best editing.
  2. Identify your images, make sure it's properly number and know last image.
  3. Write and Save:
ImageSource("X:\img\img_sequence_%06d.tiff", 0, 124, 25)
             ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑   ↑  ↑↑↑  ↑↑
             Location                        |  |||  ||>fps
                                             |  |||
                                             |  |||>last frame
                                             |
                                             |>first frame
                                           
Take note:

X:\img\ Location of images is stored, must write full path!

%06d A placeholder of number increment. if you have 0 ~ 999, write %d. If you have 0000 ~ 9999 write %04d

Clone this wiki locally