Just a simple video cropper cutter Docker
1.3K
Minimal Flask + FFmpeg web UI for trimming video clips in the browser. Upload a file, set start/end markers, preview, then download the cropped segment. An official Docker Hub image is auto-built by GitHub Actions and ready to run.
Spin it up with persistent upload/output volumes:
version: "3.8"
services:
jasvccd:
image: mythosaz/jasvccd:latest
container_name: jasvccd
ports:
- "8302:8000"
volumes:
- jas_data:/app/uploads
- jas_out:/app/outputs
restart: unless-stopped
volumes:
jas_data:
jas_out:
Open http://localhost:8302 and drop a video. The original file stays under jas_data; trimmed clips are written to jas_out and downloaded to your browser.
mythosaz/jasvccd:latest is built automatically via GitHub Actions (see .github/workflows/docker-publish.yml).python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.py # http://localhost:8000
Uploads save to uploads/, outputs to outputs/.
Content type
Image
Digest
sha256:28efe7c3d…
Size
208.1 MB
Last updated
2 months ago
docker pull mythosaz/jasvccd