PullUp

Function
This converts from 30 fps video to 24 fps film. It does the inverse of Pulldown.

For more information on the fileName syntax, see FileIn.

Parameters
Type
Defaults
Function
fileName
string
  The file path of the input image.
dominance
int
0

Tells what field of the incoming image is placed as the even field. Be careful with this, as Shake reads its images from the bottom up. Other devices and software may read images from the top down, thereby possibly inverting the field dominance.

0 = even field
1 = odd field

offset
int
2
Each group of five frames has three non-blended frames. The offset tells how many of these non-blended frames exist before the blending starts. This value is 2 by default.


Synopis

image PullUp ( 
  const char * fileName, 
  int dominance, 
  int offset
);


Script

image = PullUp ( "fileName", dominance, offset);


Command Line

shake -pullup fileName dominance offset

Supported File Formats

See Also
Pulldown, Average