From abd46181eb9799967fe101b94693bf83c420b334 Mon Sep 17 00:00:00 2001 From: Brian McGonagill Date: Mon, 9 Mar 2026 17:54:34 -0500 Subject: [PATCH] README update --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index c339cbf..c195c49 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # VideoPress — FFmpeg Video Compressor +NOTE: This application was built with the help of AI. + +- [x] The application code has been reviewed by this developer. +- [x] The application code has been tested by this developer. + +If you find any issues, please feel free to post an issue, and / or a pull request for a fix. + +## What is VideoPress? A web-based video compression tool served via **Gunicorn + gevent** (WSGI), containerised with **Docker**. FFmpeg compresses video files to approximately 1/3 their original size. All file-system access is restricted to a single @@ -46,6 +54,12 @@ docker compose up -d | pip packages | see requirements.txt | ```bash +# Create a python virtual environment to run in +python3 -m venv videopress + +#start the virtual environment +source ./videopress/bin/activate + # Install Python dependencies pip install -r requirements.txt