From 3999badf2d263996e692bb52a70706f59b1fd366 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Wed, 16 Dec 2020 17:30:01 -0500 Subject: [PATCH] update docs --- README.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e29575a..59eb16e 100644 --- a/README.md +++ b/README.md @@ -123,36 +123,31 @@ Most of the operation settings can be JavaScript expressions, for example: The above would set the `start` value to ten seconds before the end of `someAsset`. ### Supported Operations -Today, JVCL supports seven basic operations: +Today, JVCL supports seven basic operations. + +Each header below links to an example from the JVCL test suite. ### [scale](src/test/resources/tests/test_scale.jvcl) Scale a video asset from one size to another. Scaling can be proportional or anamorphic. -[Scale Example](src/test/resources/tests/test_scale.jvcl) ### [split](src/test/resources/tests/test_split.jvcl) Split an audio/video asset into multiple assets of equal time lengths. -[Split Example](src/test/resources/tests/test_split.jvcl) ### [concat](src/test/resources/tests/test_concat.jvcl) Concatenate audio/video assets together into one asset. -[Concat Example](src/test/resources/tests/test_concat.jvcl) ### [trim](src/test/resources/tests/test_trim.jvcl) Trim audio/video; crop a section of an asset, becomes a new asset. -[Trim Example](src/test/resources/tests/test_trim.jvcl) ### [overlay](src/test/resources/tests/test_overlay.jvcl) Overlay one asset onto another. -[Overlay Example](src/test/resources/tests/test_overlay.jvcl) ### [ken-burns](src/test/resources/tests/test_ken_burns.jvcl) For transforming still images into video via a fade-pan (aka Ken Burns) effect. -[Ken Burns Example](src/test/resources/tests/test_ken_burns.jvcl) ### [letterbox](src/test/resources/tests/test_letterbox.jvcl) Transform a video in one size to another size using black letterboxes on the sides or top/bottom. Handy for embedding mobile videos into other screen formats. -[Letterbox Example](src/test/resources/tests/test_letterbox.jvcl) # Complex Example Here is a complex example using multiple assets and operations.