Chapter 623: tvSignalOff()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- amount?
- disabled?
- Requirements
- See also
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<CanvasImage
src={staticFile('image.png')}
width={1280}
height={720}
fit="cover"
effects={[
tvSignalOff({
amount: 1,
}),
]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for tvSignalOff() from the official docs.
Key Takeaways
- Understand preview when working with tvSignalOff().
- Understand example when working with tvSignalOff().
- Understand api when working with tvSignalOff().
- Understand amount? when working with tvSignalOff().
- Understand disabled? when working with tvSignalOff().
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.