Skip to content

Projects

A Snipsy project is a folder on disk containing all your demo assets: text snippets, video clips, scripts, and configuration. Everything is stored as plain JSON files, so projects are easy to version control and share.

my-demo-project/
├── project.json # Project metadata + all snippets
├── scripts/ # Automation scripts (JSON)
│ └── build-demo.json
└── videos/ # Imported video files
├── build-process.mp4
└── deploy-demo.mp4

The main project file contains:

{
"name": "My Demo",
"description": "A demo for the conference talk",
"textSnippets": [
{
"id": "uuid-here",
"title": "React Import",
"text": "import React from 'react';",
"hotkey": "CmdOrControl+Shift+1",
"delivery": "fast-type",
"typeDelay": 30
}
],
"videoSnippets": [
{
"id": "uuid-here",
"title": "Build Process",
"videoFile": "videos/build-process.mp4",
"startTime": 0,
"endTime": 30,
"hotkey": "CmdOrControl+Shift+4",
"speed": 2,
"muted": true
}
]
}

Snipsy remembers your recently opened projects. They appear on the welcome screen for quick access. Click a recent project to open it, or use the × button to remove it from the list.

Click Open Project on the welcome screen and select the folder containing project.json. Snipsy detects the project file and loads everything automatically.