Skip to content

Commit

Permalink
📝 Add links to pages in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
clabe45 committed Jul 16, 2023
1 parent b164151 commit e50ec9c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ movie.record({ frameRate: 24 }) // or just `play` if you don't need to save it
The blob could then be downloaded as a video file or displayed using a `<video>`
element.

See the [documentation](https://etrojs.dev/docs/category/layers) for a list of
all built-in layers.

## Effects

Effects can transform the output of a layer or movie:
Expand All @@ -50,6 +53,9 @@ var layer = new etro.layer.Video({ startTime: 0, source: videoElement })
.addEffect(new etro.effect.Brightness({ brightness: +100) }))
```

See the [documentation](https://etrojs.dev/docs/category/effects) for a list of
all built-in effects.

## Dynamic Properties

Most properties also support keyframes and functions:
Expand All @@ -64,6 +70,9 @@ layer.effects[0].brightness = new etro.KeyFrame(
layer.effects[0].brightness = () => 100 * Math.random() - 50
```

See the [documentation](https://etrojs.dev/docs/reference/dynamic-properties)
for more info.

## Using in Node

To use Etro in Node, see the [wrapper](https://github.com/etro-js/etro-node):
Expand Down

0 comments on commit e50ec9c

Please sign in to comment.