NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Portal

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,194
» Latest member: warez100
» Forum threads: 65,379
» Forum posts: 602,220

Full Statistics

Online Users
There are currently 2295 online users.
» 1 Member(s) | 2288 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Yandex, mvallevand

Latest Threads
Closed captioning in NPVR
Forum: Windows
Last Post: sub
Yesterday, 06:27 PM
» Replies: 39
» Views: 3,819
unable to use tvhat on ra...
Forum: Linux
Last Post: basaltvest
Yesterday, 07:22 AM
» Replies: 2
» Views: 501
Can't Scan for Channels F...
Forum: Linux
Last Post: mvallevand
Yesterday, 03:19 AM
» Replies: 15
» Views: 984
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: nolipro
2026-09-09, 10:35 PM
» Replies: 44
» Views: 6,518
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 272
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 234
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
2026-09-04, 01:00 AM
» Replies: 1
» Views: 235
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 221
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 171
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 209

 
  Install Information
Posted by: sub - 2019-06-15, 05:48 AM - Forum: macOS - No Replies

Running on a Mac, you have the option of either installing natively, or running via Docker.

Installing natively on Mac
On macOS, NextPVR supports IPTV, HDHomeRun tuners, and SAT>IP tuner (DVB-S, DVB-C, DVB-T).

The latest macOS 64bit files can be downloaded from:
http://nextpvr.com/stable/mac/NPVR.zip

Pre-requesites
You need to have the ASP.NET 8 runtime installed. See "ASP.NET Core Runtime" section of https://dotnet.microsoft.com/en-us/download/dotnet/8.0
To watch video in the web app on a mac, you'll also need to have ffmpeg installed on the machine.

To install on macOS
copy binaries to directory an NPVR directory in your home directory.
cd NPVR
dotnet ./NextPVRServer.dll

(some more sophisticated steps for running it on macOS can be found here https://forums.nextpvr.com/showthread.ph...#pid606585)

After installing, NextPVR can be accessed using a web browser at http://127.0.0.1:8866/index.html. The default login is admin/password.

A note about browser choice
If you're using Safari, you'll need to enable auto playback of video, otherwise Safari doesn't allow video to start. Safari is doing this because it assumes the video is an advert or other annoying content the user doesn't want auto playing.

Print this item

  Install Information
Posted by: sub - 2019-06-15, 05:44 AM - Forum: Docker arm32v7 - No Replies

Installing using Docker
A Docker image is available for users with 32bit ARM devices. The most common device of this type is the Raspberry Pi 3, often running either Raspbian or LibreELEC. Running in this container NextPVR supports IPTV, HDHomeRun, digital tuners (DVB-T, DVB-C, DVB-S, ATSC and QAM), or SAT>IP (DVB-S, DVB-T, DVB-C)

Install the container from Dockerhub using:

Code:
sudo docker image pull nextpvr/nextpvr_arm32v7

Running the application with Docker
For the docker application to be able to stop channel lists and settings, that survive reboots, it needs to store it's use data in a location outside the docker container. It stores this information in the /config directory in the container, which you can map to a location outside of the container. To run the application interactively, so you can see the server output, with the configuration sent to the 'config' directory off your home ("~/config"), run the following command:
Code:
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
--volume /home/pi/config:/config is telling it where to save your configuration
--volume /home/pi/videos:/recordings is telling it where to save your recordings
--volume /home/pi/videos:/buffer is telling it where to save your live tv buffer files
--publish 8866:8866 is telling docker to map port 8866 (on the host machine) to port 8866 inside the the docker container.


If you're using an older legacy HDHomeRun, you'll also need these (with 192.168.1.51 replaced with your host's IP address):
Code:
--env HOST_IP=192.168.1.51 \ --publish 8020-8030:8020-8030/udp

For info on how to get docker to auto start NextPVR after a reboot or crash, see here:
https://forums.nextpvr.com/showthread.ph...-questions

Print this item

  Install Information
Posted by: sub - 2019-06-15, 05:39 AM - Forum: Docker amd64 - No Replies

Installing using Docker
This method is likely to be used for installation on NAS devices, or distros like LibreELEC. Running in a docker container NextPVR supports IPTV, HDHomeRun and digital tuners (DVB-T, DVB-C, DVB-S, ATSC and QAM).

On 64bit Intel machines, install the container image from Dockerhub using:

Code:
sudo docker image pull nextpvr/nextpvr_amd64:stable

Updating to a new release
If you already running NextPVR, and a new release is available, and you'd like to update, you'd typically run the same command again:
Code:
sudo docker image pull nextpvr/nextpvr_amd64:stable

Running the application with Docker
For the docker application to be able to stop channel lists and settings, that survive reboots, it needs to store it's use data in a location outside the docker container. It stores this information in the /config directory in the container, which you can map to a location outside of the container. To run the application interactively, so you can see the server output, with the configuration sent to the 'config' directory off your home ("~/config"), run the following command:
Code:
docker run -d \ --name nextpvr \ --volume /home/pi/config:/config \ --volume /home/pi/videos:/recordings \ --volume /home/pi/videos:/buffer \ --restart unless-stopped \ --publish 16891:16891/udp \ --publish 8866:8866 \ nextpvr/nextpvr_amd64:stable
--restart unless-stopped is telling docker to restart it if it crashes
--volume /home/pi/config:/config is telling it where to save your configuration
--volume /home/pi/videos:/recordings is telling it where to save your recordings
--volume /home/pi/videos:/buffer is telling it where to save your live tv buffer files
--publish 8866:8866 is telling docker to map port 8866 (on the host machine) to port 8866 inside the the docker container.
--publish 16891:16891/udp can help with auto discovery from some client applications.

If you're using an older legacy HDHomeRun, you'll also need these (with 192.168.1.51 replaced with your host's IP address):
Code:
--env HOST_IP=192.168.1.51 \ --publish 8020-8030:8020-8030/udp

If you need to use docker-compose, you can create a docker-compose.yml to achieve the same thing:
Code:
version: '3.5' services: nextpvr: image: nextpvr/nextpvr_amd64:stable container_name: nextpvr environment: - PUID=1000 - PGID=100 - TZ=Europe/london ports: - 8866:8866 - 16891:16891/udp volumes: - d:/docker/config:/config - d:/docker/recordings:/recordings - d:/docker/buffer:/buffer restart: 'unless-stopped'

With NextPVR running, your can access the browser interface on port 8866. The default login is admin/password.

For info on how to get docker to auto start NextPVR after a reboot or crash, see here:
https://forums.nextpvr.com/showthread.ph...-questions

Print this item

  Knewc 2.7.0
Posted by: mvallevand - 2019-06-15, 01:42 AM - Forum: X-NEWA - Replies (6)

I have uploaded a new version compatible with v4 and v5 to the repo.

NOTE you will not get this automatically because I changed the name from knew45v to knewc (pronounced "nuke") most testers were calling it the "new client" anyway.

There is another cosmetic name change as sub has changed the protocol name from "web client" to "UI client" for version 5.

Other changes

2.7.0
Kodi Python UI
- most knewc python functions work with new v5 api

UI Client
- prev key broken (v4 and v5)
- need to send certain key to get Nextpvr UI back after playback when OSD is disabled (v5)

Martin

Print this item

  Install Information
Posted by: sub - 2019-06-14, 10:06 PM - Forum: Linux - Replies (1)

On Linux NextPVR supports IPTV, HDHomeRun, digital tuners (DVB-T, DVB-C, DVB-S, ATSC and QAM), and SAT>IP tuner (DVB-S, DVB-C, DVB-T).

Installation from .deb file
The easiest way to install NextPVR is using the .deb file (thanks Martin for creating it!).

curl https://nextpvr.com/nextpvr-helper.deb -O
sudo apt install ./nextpvr-helper.deb --install-recommends

Give it a half a minute or so to start, then you should be able to open http://127.0.0.1:8866 in your browser to setup NextPVR. The default login is admin/password.

You can find more information about installing from the .deb file here, and updating when there is a new release, see here:
https://forums.nextpvr.com/showthread.php?tid=59576

Additional information can be found on the wiki:
https://github.com/sub3/NextPVR/wiki/Install-Linux

Print this item

  NextPVR Releases
Posted by: sub - 2019-06-14, 09:58 PM - Forum: NextPVR Support - Replies (44)

NextPVR v5 is a large redevelopment of the application, with the goal making it possible to run the backend (recording service / web server) on platforms other than just Windows. Where possible I've reused stuff, so there is a lot of familiar aspects to NextPVR v5, but there is also a lot of new stuff and things that needed to be done different ways...so there is definitely some learning curve for getting started with the new application. This thread aims to help get the user through this.

Unlike previous versions, since the traditional nextpvr.exe frontend application isn't available on non-Windows platforms, the setup and configuration is done using the web application. After installing, open your browser to http://localhost:8866/index.html, enter default "admin"/"password" login credentials, then head to the Settings->Devices page to begin setup. From there you should hopefully see your devices listed. Click a device...

Is NextPVR v5 ready for everyone to install?
Yes

How will I know when new builds are available?
When I post a new build, I'll post release notes in this thread. You can subscribe to this thread to get email notification of new posts.

Is there any documentation available?
Yes! The documentation is still a work in progress, but you can find the wiki here:
https://github.com/sub3/NextPVR/wiki

Specifically, initial setup is described at https://github.com/sub3/NextPVR/wiki/Setup-Main. A brief overview of how to use the application can be found at https://github.com/sub3/NextPVR/wiki/Usi...pplication

Print this item

  Install Information
Posted by: sub - 2019-06-14, 09:54 PM - Forum: Windows - No Replies

Installing on Windows
On Windows NextPVR supports IPTV, HDHomeRun, digital tuners (DVB-T, DVB-C, DVB-S, ATSC and QAM), SAT>IP tuner (DVB-S, DVB-C, DVB-T) and HDPVR style devices (HDPVR, HDPVR2, Colossus, Colossus2, Rocket)

To install NextPVR on Windows, simply run https://nextpvr.com/NPVRSetup.exe. Any time you need to update to a new release, you can just run this again.

This will start a browser pointed at http://localhost:8866. The default login is admin/password.

Windows Client
The windows client, nextpvr.exe, is included in the 'client' subdirectory. At this stage it can only connect to NextPVR running on the same Windows machine.

A tray app is also available, which can give you a visual indication of when the application is recording or idle. This can run using NPVRTray.exe.



Print this item

  air dates please
Posted by: a1blues - 2019-06-13, 04:49 PM - Forum: Wishlist - Replies (1)

Hi, a great inclusion, particularly for UK would be for a lookup of tv shows for air dates as the guide data in UK does not include air dates for programs..
I would find that very useful and I presume this could be done on look ups when getting thumbnails from thetvdb.com etc.
Thanks....Smile

Print this item

  Channels list not showing?
Posted by: a1blues - 2019-06-13, 04:41 PM - Forum: Legacy (v4.x and earlier) - Replies (2)

Hi can anyone advise what to do regarding the channels list not showing on nextpvr?
On the right click menu when selecting channels, nothing pops up and yet there used to be a list of channels to easily select a channel.
I have to use the guide to change channels now which can take more time.
Thanks..

Print this item

  Some Kodi client questions
Posted by: 2leftfeet - 2019-06-13, 12:35 PM - Forum: Kodi / XBMC - Replies (10)

Using Kodi 18.2 & npvr 4.2.4 as server.

1. In Advanced settings --> Live TV Stream; What is are the 3 settings intended to do -- Real Time, Time Shift, & Extended Time Shift?

2. What do the "Live Tv and Recording Chunk sizes" affect?

Reason I am asking is that I noticed that when Extended TimeShift was enabled, I was getting a lot of buffering while watching live TV, but no such buffering with Real Time settig or when using NPVR as client watching same channel. Also, I have had no such issues with K17.

I am trying to understand what is going on with K18 & n4.2.4.

Print this item

Pages (6435): « Previous 1 … 607 608 609 610 611 … 6435 Next »
Jump to page 

© Designed by D&D, modified by NextPVR - Powered by MyBB