From d0bc817f0c61cf6fdb28e53854718bc0c5113ed5 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Fri, 11 Dec 2020 18:02:05 -0500 Subject: [PATCH] update README --- README.md | 58 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6b18cf8..1ed4e17 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,63 @@ # Javicle - a JSON Video Composition Language -Javicle is a JSON DSL for ffmpeg transformations. +Javicle is a JSON DSL for audio/video transformations. + +Under the hood, it's all shell commands: ffmpeg, mediainfo, sox, and so on. +JVCL provides higher-level semantics for working with these lower level tools. + +# A Quick Example +Say you want to split a portion of a video into ten-second chunks. With ffmpeg +and bash, you might do something like this: +```shell script + START=10 + END=130 + INCR=10 + for ((i=START;i