An open API service indexing awesome lists of open source software.

https://github.com/syeo66/slowplayer

a slow movie player for raspberry pi
https://github.com/syeo66/slowplayer

ffmpeg image raspberry-pi

Last synced: 5 months ago
JSON representation

a slow movie player for raspberry pi

Awesome Lists containing this project

README

          

# SlowPlayer
A slow movie player on the Waveshare e-paper screen for Rasperry Pi.
Inspired by [How to Build a Very Slow Movie Player for £120 in 2020](https://debugger.medium.com/how-to-build-a-very-slow-movie-player-in-2020-c5745052e4e4) by [@TomWhitwell](https://github.com/TomWhitwell/)

## Requirements

You'd have to install ffmpeg and imagemagick to make it work.

```bash
sudo apt-get update
sudo apt-get install imagemagick ffmpeg
```

To compile the IT8951 code you'd have also to install the bcm2835 library.

```bash
wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.68.tar.gz
tar xvfz bcm2835-1.68.tar.gz
cd bcm2835-1.68
./configure
make
sudo make install
```

After that you can compile IT8951

```bash
cd slowplayer/IT8951/
make
```

## Install cron job

```bash
crontab < crontab
```