Docker image for github.com/WyattBlue/auto-editor that adds watch folder support.
231
Docker image for WyattBlue/auto-editor
Dockerized auto-editor CLI (no need to install dependencies)
Watch folder for continuous bulk processing jobs
docker pull brenekh/auto-editor
docker run -it -v ./:/videos brenekh/auto-editor /videos/my-video.mp4
Note: In order for
auto-editorto access the files on your disk, you must pass them as a volume. The above command uses a relative path (./) as an alias for the current directory, which is only available in Docker >=23. If you are using an older version, you must specify the full path to the folder in which your content resides.
docker run -it -v ./watch:/watch -v ./output:/output brenekh/auto-editor
When no arguments are passed to the container, it will instead behave as a daemon watching for new files in the AUTO_EDITOR_WATCH_DIR folder.
After the files are processed, they will be moved into the AUTO_EDITOR_OUTPUT_DIR.
AUTO_EDITOR_WATCH_DIR and AUTO_EDITOR_OUTPUT_DIR are environment variables that default to /watch and /output respectively.
The code for this image is hosted at github.com/BrenekH/auto-editor-docker.
Content type
Image
Digest
sha256:fb391b456…
Size
343.4 MB
Last updated
almost 3 years ago
docker pull brenekh/auto-editor