Sign inSign up

nextpvr/nextpvr_arm32v7

By nextpvr

•Updated 3 months ago

This is NextPVR for arm32v7 processors, suitable for use on RPi3 using Raspbian or LibreELEC.

Image
6

10K+

nextpvr/nextpvr_arm32v7 repository overview

⁠NextPVR

NextPVR is a personal video recorder application, with the goal making it easy to watch or record live TV, and provides great features like series recordings, artwork, web scheduling etc.

This docker image will provide a backend for use on 32bit ARM device such as the Raspberry Pi 3. It supports IPTV or HDHomeRun devices on this platform. With additional docker command line options, DVB/ATSC tuners can also be used.

⁠Install/Upgrade

The following command can be used to either install (or upgrade) NextPVR on your device:
docker pull nextpvr/nextpvr_arm32v7:stable

⁠Running NextPVR

The following command can be used to run NextPVR in the backgrow. As you can see from the command line, docker needs to have "/config" in the container mapped to some local directory so that NextPVR can store it's configuration data.
docker run -d \
    --volume /home/pi/config:/config \
    --volume /home/pi/videos:/recordings \
    --volume /home/pi/videos:/buffer \
    --publish 8866:8866 \
    nextpvr/nextpvr_arm32v7:stable

If you're using an older legacy HDHomeRun, you'll also need a couple more parameters (replacing 192.168.1.51 with your host's IP address):

    --env HOST_IP=192.168.1.51 \
    --publish 8026:8026/udp \

In this example:

  1. the /config directory in the container will map to the users ~/config directory
  2. the /recordings directory the container will map to the users ~/videos directory
  3. the /buffer directory in the container will map to the users ~/videos directory
  4. the local port 8866 will mapped to port 8866 in the container. NextPVR has historically used port 8866, so exposing it as port 8866 allows apps like Kodi to continue to access it easily.

⁠Using NextPVR

After running NextPVR, you can access it via a web browser at http://localhost:8866/index.html , and logging in with the default credentials of admin/password. If you intend to remotely access the NextPVR web app over the internet, you must change your username and password.

In addition to the web app, other popular ways to access it are via Kodi, or the our iOS / Android apps in their respective app stores. For more information see https://nextpvr.com/download.html⁠

Tag summary

Content type

Image

Digest

sha256:5aa72300f…

Size

267.9 MB

Last updated

3 months ago

docker pull nextpvr/nextpvr_arm32v7