From 6dcbb497ce08498f28d93eac409331d6f0fbfdaf Mon Sep 17 00:00:00 2001 From: Nekkowe Date: Thu, 9 Jan 2025 19:33:03 +0100 Subject: [PATCH] Including missing setup step in README --- README.md | 8 +++++--- requirements.txt | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 5d7ec50..a5c8159 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,12 @@ A free, open-source tool to automatically generate a gallery of your art, to put I wanted to make this dead simple to set up and use, but it's definitely not quite there yet. -## Requirements +## Requirements / Setup -1. [Python](https://www.python.org/downloads/), to run the scripts -2. [FFmpeg](https://ffmpeg.org/), to create the thumbnails (, good installation instructions available here: https://ultahost.com/knowledge-base/install-ffmpeg-on-windows/) +1. Install [Python](https://www.python.org/downloads/), to run the scripts +2. Install [FFmpeg](https://ffmpeg.org/), to create the thumbnails + - (some good instructions for installing FFmpeg are available here: https://ultahost.com/knowledge-base/install-ffmpeg-on-windows/) +3. Install the dependencies (`pip install -r requirements.txt`) ## How to Use diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b0d44ab --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +python_ffmpeg==2.0.12