User Documentation | DiffMorpher + LCM-LoRA + FILM

FILM Interpolation Parameters

Frame Interpolation for Large Motion (FILM) is a powerful algorithm developed by Google Research that creates intermediate frames between existing ones, significantly enhancing the smoothness of your morphing videos. In Metamorph, FILM serves as a second phase that further refines the transitions between keyframes generated by DiffMorpher.

How FILM Works

FILM is particularly effective at handling large motion between frames, a common challenge in image morphing. Unlike traditional interpolation methods that struggle with significant displacements, FILM can produce natural-looking intermediate frames even when the source frames differ substantially.

Key advantages of FILM:

  • Handles large motion between frames with high accuracy
  • Maintains visual coherence and natural motion
  • Preserves fine details during interpolation
  • Supports recursive application for creating more intermediate frames

FILM Parameters

Enable FILM Interpolation

This option toggles whether FILM will be applied to the keyframes generated by DiffMorpher.

When enabled: The system will generate intermediate frames between each pair of keyframes, resulting in a much smoother final video.

When disabled: Only the keyframes generated by DiffMorpher will be used in the final video.

Recommendation: Enable for most use cases. Only disable if you specifically want to see just the raw keyframes or need faster processing.

Best Practices

Balancing Keyframes and FILM

Finding the right balance between the number of keyframes and FILM recursion passes is key to achieving optimal results:

Quality Target Keyframes FILM Recursions Processing Priority
Quick Preview 6-8 2 Speed
Standard Quality 12-16 3 Balanced
High Quality 18-24 3-4 Quality
Maximum Quality 24-30 4-6 Maximum Quality

Important note: FILM works best when the keyframes are already of high quality. For optimal results:

  • Generate a sufficient number of keyframes (12+ recommended)
  • Use AdaIN and reschedule sampling for smoother keyframe transitions
  • Consider using LCM-LoRA to accelerate keyframe generation without sacrificing too much quality

FILM Recursion Passes

This parameter determines how many times FILM will be recursively applied to create intermediate frames. Higher values result in more frames and smoother motion but increase processing time.

Recursive Interpolation Theory

The recursive application of FILM can be expressed as the following equation:

TotalFrames = (2K + 1) × (num_keyframes − 1) (3.2)

Where K represents the recursion parameter (number of passes), which determines the recursive depth of the interpolation process.

How Recursive Interpolation Works:

  1. Start with consecutive keyframes generated by DiffMorpher
  2. Apply FILM to interpolate a middle frame at t = 0.5 between each keyframe pair
  3. Recursively apply this interpolation process to each new subframe pair (original-middle and middle-original)
  4. Continue until reaching the desired recursive depth (K)

For example, with a recursive depth of 3, a single pair of consecutive keyframes would yield 2³ + 1 = 9 total frames in the sequence.

Recommended settings:

Visual Impact of Recursion Parameter

The recursion parameter has a significant impact on the smoothness and frame count of your final video. Here's a visual representation of how increasing the recursion value affects the output:

Recursion Value (K) Frames Between Each Keyframe Pair Total Frames Formula Example (With 10 Keyframes)
0 (No FILM) 1 num_keyframes 10 frames
1 3 (2^1 + 1) × (num_keyframes − 1) 3 × 9 = 27 frames
2 5 (2^2 + 1) × (num_keyframes − 1) 5 × 9 = 45 frames
3 9 (2^3 + 1) × (num_keyframes − 1) 9 × 9 = 81 frames
4 17 (2^4 + 1) × (num_keyframes − 1) 17 × 9 = 153 frames
5 33 (2^5 + 1) × (num_keyframes − 1) 33 × 9 = 297 frames
6 65 (2^6 + 1) × (num_keyframes − 1) 65 × 9 = 585 frames

Note: As you can see, the number of frames increases exponentially with each increment of the recursion parameter. Choose wisely based on your desired output quality and file size constraints.

Calculating Video Duration

You can estimate the duration of your final video using the number of frames and the output FPS:

Duration (seconds) = Total Frames ÷ Output FPS

Examples:

Recommendation: For presentation-quality morphs, aim for a duration of 3-5 seconds, which typically provides enough time to appreciate the transition without becoming tedious.