Capítulo 580 de 988

Chapter 580: fisheye()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • fieldOfView?
  • center?
  • radius?
  • zoom?
  • disabled?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          fisheye({
            fieldOfView: 2.5,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for fisheye() from the official docs.

Key Takeaways

  1. Understand preview when working with fisheye().
  2. Understand example when working with fisheye().
  3. Understand api when working with fisheye().
  4. Understand fieldofview? when working with fisheye().
  5. Understand center? when working with fisheye().

Connects To

  • Animated Emoji: related page in the Effects Library section.
  • get Available Emoji: related page in the Effects Library section.
  • api: related page in the Effects Library section.