Shows how to make a video clip from a sequence of images. The input is a series of JPEG images. The output is configured with an AVBlocks preset.
slideshow --input <directory> --output <filename_without_extension> --preset <preset_id>List options:
slideshow --helpList supported presets:
slideshow --presetsCreate an MP4 / H.264 clip from a sequence of images in the ./assets/img folder using the mp4.h264.aac preset:
mkdir -p ./output/slideshow
slideshow \
--input ./assets/img \
--output ./output/slideshow/cube \
--preset mp4.h264.aacList options:
slideshow --helpList supported presets:
slideshow --presetsCreate an MP4 / H.264 clip from a sequence of images in the ./assets/img folder using the mp4.h264.aac preset:
New-Item -ItemType Directory -Force -Path ./output/slideshow
slideshow `
--input ./assets/img `
--output ./output/slideshow/cube `
--preset mp4.h264.aac