Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.18 KB

README.md

File metadata and controls

46 lines (30 loc) · 1.18 KB

Narakeet transitions example

This example shows how to automatically apply transitions to video clips.

Check out the outcome in result.mp4.

Try it out

Upload the script directory to a Narakeet project. The main script file is source.md.

How it works

To set transitions between scenes for the whole video, add the transition property in the script header. The following header will set a half-second wipe transition between the scenes.

---
size: 720p
transition:
  type: wipe
  duration: 0.5
---

You can also use a shortcut with the transition name and duration in a single line. For example, the following header will set a two second crossfade transition:

---
size: 720p
transition: crossfade 2
---

To set a transition for an individual scene, add it using the transition stage direction

![](london.jpg)

(transition: crossfade 2)

Note that the transition property combines the previous scene with the current scene, so any transition on the first scene is ignored.

Available transition options

See https://www.narakeet.com/docs/format/#transition for an up-to-date list of supported transition types