Chapter 624: uvTranslate()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- u?
- v?
- disabled?
- See also
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/video.mp4"
effects={[uvTranslate({u: 0.1, v: 0.05})]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for uvTranslate() from the official docs.
Key Takeaways
- Understand preview when working with uvTranslate().
- Understand example when working with uvTranslate().
- Understand api when working with uvTranslate().
- Understand u? when working with uvTranslate().
- Understand v? when working with uvTranslate().
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.