packages/docs/docs/cli/create-video.mdx
import {CreateVideoTemplateFlags} from '../../components/CreateVideoTemplateFlags';
Scaffold a new Remotion project.
npx create-video <directory>
If no arguments are passed, an interactive TUI will guide you through the setup.
<directory>The directory in which the project should be created.
--yes<AvailableFrom v="4.0.439" />Enable non-interactive mode. All prompts are skipped with sensible defaults.
Requires a template flag and a directory argument.
When used:
--no-tailwind)npx create-video --yes --blank my-video
-y<AvailableFrom v="4.0.439" />Alias for --yes.
--no-tailwind<AvailableFrom v="4.0.439" />When combined with --yes, skip installing TailwindCSS. Without --yes, this flag has no effect because TailwindCSS is offered interactively.
npx create-video --yes --blank --no-tailwind my-video
--tmp<AvailableFrom v="4.0.214" />Create the project in a temporary directory instead of specifying a directory name.
npx create-video --yes --blank --tmp
Pass a template name as a flag to skip the template selection prompt.
npx create-video --blank my-video
Available templates: <CreateVideoTemplateFlags />.
By passing --yes (or -y), all prompts are skipped and the project is created with sensible defaults. This is useful for scripting and AI agents like Claude Code.
A template flag and a directory argument are required.
npx create-video --yes --blank my-video
When using --yes:
--no-tailwind to skip it.npx skills add remotion-dev/skills in the project directory.Without TailwindCSS:
npx create-video --yes --blank --no-tailwind my-video
In a temporary directory:
npx create-video --yes --blank --tmp