From 3bb74eb13d01506ad366316932ec7cd02013e167 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 13 Nov 2023 15:15:49 -0600 Subject: [PATCH 1/3] don't need this disclaimer anymore --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 816f3de..7a28bb8 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,6 @@ Very Slow Movie Player using Python + Raspberry Pi -## Regarding Raspberry Pi OS 12 Bookworm - -There are numerous dependency issues with Python 3.11 and [upstream libraries](https://github.com/TomWhitwell/SlowMovie/issues/150) using this project with the latest Raspberry Pi OS (Bookworm). The preferred install method for now is to install the [legacy OS 11 (Bullseye)](https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2023-05-03/). - ## Table Of Contents - [Background](#background) From 27d0fb3c57a51ead972e7c76248331766e435f19 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 13 Nov 2023 15:18:01 -0600 Subject: [PATCH 2/3] updated install instructions added JonCellini as contributor --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7a28bb8..3e388c6 100644 --- a/README.md +++ b/README.md @@ -66,19 +66,17 @@ On the Raspberry Pi: 2. Create & activate python virtual environment (venv) * Create virtual environment: `python3 -m venv --system-site-packages .SlowMovie` * Activate virtual environment: `source .SlowMovie/bin/activate` -3. Install Waveshare e-paper drivers - * `pip3 install "git+https://github.com/waveshare/e-Paper.git#subdirectory=RaspberryPi_JetsonNano/python&egg=waveshare-epd"` -4. Clone this repo +3. Clone this repo * `git clone https://github.com/TomWhitwell/SlowMovie` * Navigate to the new SlowMovie directory: `cd SlowMovie/` * Copy the default configuration file: `cp Install/slowmovie-default.conf slowmovie.conf` -5. Make sure dependencies are installed +4. Make sure dependencies are installed - this will install the EPD drivers * `sudo apt install ffmpeg` * `pip3 install ffmpeg-python` * `pip3 install pillow` * `pip3 install ConfigArgParse` * `pip3 install git+https://github.com/robweber/omni-epd.git#egg=omni-epd` -6. Test it out +5. Test it out * Run `python3 slowmovie.py`. If everything's installed properly, this should start playing `test.mp4` (a clip from _Psycho_) from the `Videos` directory. ## Usage @@ -207,6 +205,7 @@ Please read our [contributing guidelines](/.github/CONTRIBUTING.md) before submi * [@missionfloyd](https://github.com/missionfloyd) * [@robweber](https://github.com/robweber) * [@qubist](https://github.com/qubist) +* [@JonCellini](https://github.com/JonCellini) ## License From ea30644ad61472d4b07b2f2ae5c9500233d7a294 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 13 Nov 2023 15:19:00 -0600 Subject: [PATCH 3/3] updated omni-epd to 0.4.0 --- Install/requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Install/requirements.txt b/Install/requirements.txt index 85af9a5..0d2c7f7 100644 --- a/Install/requirements.txt +++ b/Install/requirements.txt @@ -1,5 +1,4 @@ ffmpeg-python==0.2.0 Pillow>=9.1.0 ConfigArgParse==1.4.1 -git+https://github.com/waveshare/e-Paper.git#subdirectory=RaspberryPi_JetsonNano/python&egg=waveshare-epd -git+https://github.com/robweber/omni-epd.git@v0.3.4#egg=omni-epd +git+https://github.com/robweber/omni-epd.git@v0.4.0#egg=omni-epd