From c560d8d736fa8f231d417f7bd2d061693dbc140b Mon Sep 17 00:00:00 2001 From: Matt Harvey <harveym@gmail.com> Date: Tue, 26 Sep 2017 21:00:08 -0700 Subject: [PATCH] Updates requirements. --- README.md | 2 ++ requirements.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index d43a0bb..7b27cb4 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ This code requires you have Keras 2 and TensorFlow 1 or greater installed. Pleas `pip install -r requirements.txt` +You must also have `ffmpeg` installed in order to extract the video files. If `ffmpeg` isn't in your system path (ie. `which ffmpeg` doesn't return its path, or you're on an OS other than *nix), you'll need to update the path to `ffmpeg` in `data/2_extract_files.py`. + ## Getting the data First, download the dataset from UCF into the `data` folder: diff --git a/requirements.txt b/requirements.txt index 791d4c2..245bb4c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,5 @@ numpy>=1.12.1 pandas>=0.19.2 tqdm>=4.11.2 matplotlib>=2.0.0 +Pillow>=2.1.0 +h5py>=2.7.0 -- GitLab