Chapter 243: Embedding transparent videos
Core Idea
You can embed transparent videos in Remotion.
Key Concepts
- With @remotion/media
- Without an alpha channel
- With
<OffthreadVideo>
- Greenscreen effect
- Rendering transparent videos
Code Examples
export const MyComp: React.FC = () => {
return <Video src={staticFile('transparent.webm')} />;
};
- What it demonstrates: Usage pattern for Embedding transparent videos from the official docs.
Key Takeaways
- Understand with @remotion/media when working with Embedding transparent videos.
- Understand without an alpha channel when working with Embedding transparent videos.
- Understand with
<offthreadvideo> when working with Embedding transparent videos.
- Understand greenscreen effect when working with Embedding transparent videos.
- Understand rendering transparent videos when working with Embedding transparent videos.
Connects To
- Animatedimage: related page in the Assets & Media section.
- Delaying: related page in the Assets & Media section.
- Exporting: related page in the Assets & Media section.