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