# Javicle - a JSON Video Composition Language JVCL (pronounced "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