Sign in

Recipe: brand-locked presets

Centralize your brand's style and voice so every Short is consistent — wrap jobs.create and only let callers pass the script.

typescript
const BRAND = { style: 'animated', voiceId: 'el_brian', language: 'en' } as const;

export function makeBrandShort(script: string) {
  return cf.jobs.create({ script, ...BRAND });
}

Keep BRAND in one module; changing it updates every future render. Combine with the CSV recipe to mass-produce on-brand Shorts.