alubbock / rpi-vidlooper

Video player for Raspberry Pi, controlled by GPIO buttons
MIT License
19 stars 18 forks source link
gpio raspberry-pi

rpi-vidlooper

A video looper for the Raspberry Pi, controlled by GPIO pins. Designed to run an unattended video display, where users can select the active video by switch.

MIT licensed.

Features

Usage

I've published a two part tutorial on my blog:

On the hardware side, you'll need a Raspberry PI with several switches, one for each video. Each switch should be connected to a GPIO pin, and to ground. Optionally, you can set up an indicator LED for each video, connected to a GPIO pin.

Install dependencies:

sudo apt-get update
sudo apt-get install python3-pip omxplayer fbi

Install rpi-vidlooper:

pip3 install rpi-vidlooper

This creates the vidlooper command. For usage help, see:

vidlooper --help

Troubleshooting

RuntimeError: No access to /dev/mem. Try running as root!

By default, you'll need to run sudo vidlooper, to gain access to the GPIO pins and the graphics card (GPU) for omxplayer. Generally, this is not recommended.

To avoid this, the user you want to run the vidlooper as will need to be in the gpio group. For example, for the pi user, you'd need to do this:

sudo usermod -a -G gpio pi

See further information on this issue.

No rights to /dev/vchiq

See the OMXplayer troubleshooting to fix this issue. It's also possible to avoid by running sudo vidlooper, but as above, this is not recommended.

Further reading