-
-
Notifications
You must be signed in to change notification settings - Fork 55
Home
Starting from version 4.9.5, IFME support to render AviSynth Scripts.
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.
You can convert images into video via AviSynth, here is how to do it:
for example purpose, image file name: img_sequence_000000.tiff
- First create a empty file, simply open Notepad++ for best editing.
- Identify your images, make sure it's properly number and know last image.
- Write and Save:
ImageSource("X:\img\img_sequence_%06d.tiff", 0, 124, 25)
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ ↑ ↑↑↑ ↑↑
Location | ||| ||>fps
| |||
| |||>last frame
|
|>first frame
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