Capítulo 830 de 988

Chapter 830: Endcard

Core Idea

In the endcard you can add a call to follow, as well as links to your social media profiles or other websites. This can be setup in the config/endcard.

Key Concepts

  • Endcard: In the endcard you can add a call to follow, as well as links to your social media profiles or other websites.

Code Examples

export const channels: {
  [key in Channel]: ChannelConfig & {
    isLinkedInBusinessPage: boolean;
  };
} = {
  jonny: {
    instagram: null,
    linkedin: "Jonny Burger",
    x: "@JNYBGR",
    youtube: "/JonnyBurger",
    discord: null,
    isLinkedInBusinessPage: false,
  },
  remotion: {
    instagram: "@remotion",
    linkedin: "Remotion",
    x: "@remotion",
    youtube: "@remotion_dev",
    discord: null,
    isLinkedInBusinessPage: true,
  },
};
  • What it demonstrates: Usage pattern for Endcard from the official docs.

Key Takeaways

  1. Understand endcard when working with Endcard.

Connects To

  • Captions: related page in the Recorder (@remotion/recorder) section.
  • Create: related page in the Recorder (@remotion/recorder) section.
  • Demo: related page in the Recorder (@remotion/recorder) section.