Skip to content

Your First Project

In this tutorial you will build a complete show-ready project with two screens, background video loops, a title graphic with a crossfade transition, and a Playlist for operator control. This covers the most common Exaplay 3 workflow and introduces several key features.

Time required: about 20 minutes

What You'll Build

A dual-projector setup for a live event:

  • Left projector — Looping background video + title graphic that fades in on cue
  • Right projector — Looping background video (continuous)
  • Playlist — A named cue that triggers the title graphic, operable by hotkey or mouse click
  • Operator URL — A simplified control view for your show operator

By the end, you will understand multi-screen workflows, layers, transitions, Playlists, and the operator control view.

Before You Begin

Make sure you have:

  • [x] Completed the Quick Start Tutorial and are comfortable with the basic workflow
  • [x] At least two display outputs connected (or one is fine — you can still create multiple screens for pre-programming)
  • [x] The following media files ready:
    • A background video (any video loop or long clip)
    • A title graphic (a PNG or JPEG with transparency works best, but any image will do)

Working with one monitor?

You can follow this entire tutorial with a single monitor. Exaplay 3 lets you create screens without physical outputs — the content renders in the canvas preview. You can assign outputs later when the hardware is available.


Step 1 — Create a New Project

  1. Launch Exaplay 3 (or if it is already running, choose File → New to start fresh).
  2. Immediately save with Ctrl+S and name it something meaningful, e.g. Event Show.

Saving first gives your project a .vpp file on disk. This is a good habit — it enables auto-save and auto-heal recovery.

Step 2 — Create Two Screens

You need a screen for each projector. You created a single screen in the Quick Start — now repeat the process twice:

Screen 1: Left Projector

  1. Click + Screen in the header bar.
  2. Set Name to Left.
  3. Choose the Output for the left projector (or leave it unassigned for now).
  4. Click Create.

Screen 2: Right Projector

  1. Click + Screen again.
  2. Set Name to Right.
  3. Choose the Output for the right projector.
  4. Click Create.

You now have two tabs in the header bar — Left and Right. Click each tab to switch between their compositions and timelines.

Screen tabs

Each screen tab shows that screen's composition, timeline, and inspector properties. Think of it like having two independent editing workspaces — one per projector.

Step 3 — Add Background Loops

Next, add a looping background video to both screens.

On the Left screen:

  1. Click the Left tab in the header to select it.
  2. In the File Browser, navigate to your background video.
  3. Drag the video thumbnail onto Track 1 in the Timeline.
  4. Select the clip on the timeline (click it). The Inspector panel on the right shows the clip's properties.
  5. In the Inspector, find the Loop setting and set it to (infinite loop). This makes the video restart automatically when it reaches the end.

On the Right screen:

  1. Click the Right tab.
  2. Drag the same (or a different) background video onto Track 1.
  3. Select the clip and set Loop to in the Inspector.

Two screens with background loops

Press Space to play. Both timelines start simultaneously and you should see the background videos looping on the canvas previews.

Why use Track 1 for backgrounds?

Track 1 is the bottom layer of the composition. Content on higher-numbered tracks draws on top. Placing your background on Track 1 ensures it is always behind any foreground graphics or titles you add later.

Step 4 — Add a Title Graphic

Now add a title graphic that will appear on the Left screen on top of the background.

  1. Click the Left tab to switch to it.
  2. In the File Browser, navigate to your title image (PNG/JPEG).
  3. Drag it onto Track 2 in the Timeline.
  4. Position the clip on the timeline at the timecode where you want the title to appear. You can drag the clip left or right on the track to adjust its position.
  5. Select the clip and configure it in the Inspector:
PropertyValueWhy
In TransitionCrossfadeThe title will smoothly fade in rather than appearing abruptly
In Duration1.0 sThe crossfade takes one second
Out TransitionCrossfadeIt also fades out smoothly
Out Duration1.0 sOne-second fade out

Transition types

Exaplay 3 supports several transition types including Cut (instant), Crossfade (smooth opacity blend), and others. Crossfade is the most commonly used for professional shows.

The title graphic now sits on Layer 2 (Track 2), above the background on Layer 1 (Track 1). When the playhead reaches the title clip, it crossfades in over the background. When the clip ends, it crossfades out.

Step 5 — Create a Playlist

So far, everything is driven by the continuous timeline. For a live show, you usually want an operator to trigger events manually. That is what Playlists are for.

Add a Playlist composition

  1. Click the + button in the composition tab bar to create a new composition.
  2. In the editor area, click Playlist to set the composition type (instead of Timeline). Rename it (e.g. My Cues) in the Inspector.
  3. The composition's editor area now shows the Playlist with its empty cue list.

Add a cue

  1. Click + Cue to create a new cue entry.
  2. Configure the cue:
FieldValueDescription
NameTitle InA descriptive label for the operator
ActionGo to timecodeThe cue will jump the timeline to a specific position
Timecodee.g. 00:00:05:00Enter the timecode where the title clip begins on Track 2 (match the clip's position on the timeline)
Hot KeyF1Pressing F1 triggers this cue

Playlist with one cue

How cues work

When the operator triggers a cue (by clicking it, pressing the hotkey, or receiving an external command), the timeline jumps to the specified timecode and begins playback from there. This means the background video keeps looping on Track 1 while the title graphic crossfades in on Track 2.

Test the cue

  1. Press Escape to stop playback and return to the beginning.
  2. Press Space to start playing the background loop.
  3. Press F1 — the timeline jumps to the cue timecode and the title crossfades in.

If it works, you have a functional operator-controlled show!

Step 6 — Set Up the Operator Control View

Exaplay 3 includes a simplified Control View that shows only the Playlist and transport controls — no editing tools. This is what you share with your show operator.

  1. Find your machine's IP address (e.g. 192.168.1.100).
  2. On any device on the same network, open a browser and go to:
    http://192.168.1.100:8123/control
  3. The operator sees a clean interface with:
    • The list of cues (with names and hotkeys)
    • Play / Pause / Stop buttons
    • Current timecode display

Operator control view

Tablets and phones

The Control View is responsive and works well on tablets. For live events, giving the operator an iPad or Android tablet with this URL creates a portable, wireless show control surface.

Step 7 — Save and Archive

  1. Press Ctrl+S to save your project.
  2. The .vpp file in Documents\Exaplay3\ now stores everything: both screen layouts, all media references, the Playlist, transition settings, and loop configurations.

Keep your media files accessible

Media files are referenced by file path, not embedded in the project. When moving a project to another machine:

  • Keep the media folder in the same relative location, or
  • Place media in Documents\Exaplay3\media\ on the target machine
  • Use File → Export Project to create a ZIP archive that includes all referenced media files

✅ Checkpoint — What You've Accomplished

You have built a complete show-ready project:

  • [x] Created a two-screen setup (Left and Right projectors)
  • [x] Added looping background videos to both screens
  • [x] Layered a title graphic on top of the background using Track 2
  • [x] Configured crossfade transitions for smooth visual blending
  • [x] Created a Playlist with a hotkey-triggered cue
  • [x] Tested operator-driven cueing with the F1 key
  • [x] Set up the Control View URL for a show operator
  • [x] Saved the project as a .vpp file

Going Further

Now that you have the fundamentals, explore these topics to expand your skills:

TopicLinkWhat you'll learn
Full Interface GuideInterface OverviewEvery panel, tool, and shortcut in detail
Visual EffectsEffectsColor keying, chromatic aberration, dome looks, and other live effect controls
Projection MappingProjection MappingVIOSO warping, edge blending, multi-projector geometry
Timecode SyncTimecode & ArtNetLTC, ArtNet, and OSC sync for frame-accurate shows
User Panel BuilderUser PanelsCreate custom touch-friendly operator panels
Live Events WorkflowLive EventsEnd-to-end guide for concerts and festival stages
Multi-Client SetupMulti-ClientSynchronise playback across multiple Exaplay 3 instances

Challenge yourself

Try extending this project by adding:

  1. A second cue that fades the title out (Go to timecode at the end of the title clip)
  2. A third layer on Track 3 with a logo watermark set to 50% opacity
  3. A different background video on each screen

Exaplay 3 User Documentation