Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

slideshow

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.

Command Line

slideshow --input <directory> --output <filename_without_extension> --preset <preset_id>

Examples

Bash

List options:

slideshow --help

List supported presets:

slideshow --presets

Create 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.aac

PowerShell

List options:

slideshow --help

List supported presets:

slideshow --presets

Create 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