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