NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Windows v
« Previous 1 2 3 4 5 6 … 101 Next »
Change data quality to a lower

 
  • 0 Vote(s) - 0 Average
Change data quality to a lower
tvviewer
Offline

Junior Member

Europe
Posts: 16
Threads: 4
Joined: May 2022
#1
2022-05-07, 06:24 PM (This post was last modified: 2022-05-07, 06:35 PM by tvviewer.)
Hi

Nextpvr is awesome, many thanks must go to the developers. I use Nextpvr with Kodi as frontend on a VPN. The network is 4G that has limited data usage account. The tv part works great. When i watch cable tv on the client with Kodi, i assume that the data bitrate is the default and highest of the cable tv capability. When watching for hours, lots of data is comsumed on the 4G data usage account.
I would like to know how to limit the bitrate / size of data that travels from the nextpvr server to the client. I know there is a config.xml and that has lots of numbers. What should be changed to accomplish the goal?

EDIT: It could be the streaming-bitrate that is needed to be changed. The recordings stored on the disk should still be full quality.

thx
tvviewer
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,839
Threads: 954
Joined: May 2006
#2
2022-05-07, 07:49 PM
For Live TV in Kodi, there is a client transcode streaming option that lets you specify the resolution and on the server you set the bit rate for that resolution. Transcoding is server-side.

Similarly there are options to transcode recordings after they finish, plus you can script that yourself

Martin
tvviewer
Offline

Junior Member

Europe
Posts: 16
Threads: 4
Joined: May 2022
#3
2022-05-07, 08:02 PM
(2022-05-07, 07:49 PM)mvallevand Wrote: For Live TV in Kodi, there is a client transcode streaming option that lets you specify the resolution and on the server you set the bit rate for that resolution.  Transcoding is server-side.

Similarly there are options to transcode recordings after they finish, plus you can script that yourself

Martin

If config.xml in "C:\Users\Public\NPVR-Data" should be edited , would it be the section of streamingprofiles that should be changed?
"
  <StreamingProfiles>
    <Profile name="1080p">
      <VideoBitrate>8000</VideoBitrate>
      <AudioBitrate>192</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="720p">
      <VideoBitrate>4000</VideoBitrate>
      <AudioBitrate>192</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="576p">
      <VideoBitrate>2000</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="504p">
      <VideoBitrate>1700</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="480p">
      <VideoBitrate>1500</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="360p">
      <VideoBitrate>750</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="240p">
      <VideoBitrate>460</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
    <Profile name="144p">
      <VideoBitrate>100</VideoBitrate>
      <AudioBitrate>128</AudioBitrate>
      <AudioChannels>2</AudioChannels>
    </Profile>
  </StreamingProfiles>
"

E.g. for the 1080p:
"
<Profile name="1080p">

      <VideoBitrate>6000</VideoBitrate>

"
Similarly for the 720p section?
Would that work?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,839
Threads: 954
Joined: May 2006
#4
2022-05-07, 08:27 PM
Probably but I use the gear on the setting page to change them. Kodi pvr.nextpvr only lets you pick one regardless of the source.

Martin
tvviewer
Offline

Junior Member

Europe
Posts: 16
Threads: 4
Joined: May 2022
#5
2022-05-07, 08:56 PM (This post was last modified: 2022-05-07, 09:02 PM by tvviewer.)
(2022-05-07, 08:27 PM)mvallevand Wrote: Probably but I use the gear on the setting page to change them.  Kodi pvr.nextpvr only lets you pick one regardless of the source.

Martin

I tried to e.g. for the 1080p to set as
:
"
<Profile name="1080p">

      <VideoBitrate>500</VideoBitrate>

"
The network display for the ethernet in task manager still shows lots of data being transferred - so far i cannot see less data being transferred. If i have luck with setting a very low bitrate then the data transferred should go down a lot.
I set videobitrate back to 8000 and save.

I go to transcoder setting in http://localhost:8866/settings.html#
I change the preferred streaming profile from default to 1080p but cannot see that less data is transferred.
I set to default again. The setting wheel cannot be clicked.
I remove check in "avoid transcoding where possible" - cannot see it changed much.

Not having luck so far with making a difference. Other ideas?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#6
2022-05-07, 09:01 PM
Have you enabled transcoded playback in Kodi (in the addon settings)? By default the Kodi addon is asking for the full stream. You need to explicitly tell it to use transcoded streams instead. The settings you're tweaking above will make no difference when kodi is using the full stream.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,839
Threads: 954
Joined: May 2006
#7
2022-05-07, 09:27 PM
Your test might not be a good one. Don't forget 1080i to 1080p roughly doubles the number of frames being sent.

Martin
tvviewer
Offline

Junior Member

Europe
Posts: 16
Threads: 4
Joined: May 2022
#8
2022-05-07, 09:27 PM (This post was last modified: 2022-05-07, 09:45 PM by tvviewer.)
(2022-05-07, 09:01 PM)sub Wrote: Have you enabled transcoded playback in Kodi (in the addon settings)? By default the Kodi addon is asking for the full stream. You need to explicitly tell it to use transcoded streams instead. The settings you're tweaking above will make no difference when kodi is using the full stream.

This makes a noticeable difference. But the motion is no longer smooth. It is quite jerky and for e.g. sport coverage that is no good.
EDIT: and with 2 clients running simultaniously there are frame and audio fallouts all the time. This does not work at all.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,839
Threads: 954
Joined: May 2006
#9
2022-05-07, 09:34 PM
Your 1080p up-coversion takes a beefy server or h/w transcoding. Upload your zipped NextPVR logs and we can check.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#10
2022-05-07, 09:56 PM
(2022-05-07, 09:27 PM)tvviewer Wrote: This makes a noticeable difference. But the motion is no longer smooth. It is quite jerky and for e.g. sport coverage that is no good.
EDIT: and with 2 clients running simultaniously there are frame and audio fallouts all the time. This does not work at all.
The reality is you typically need quite a beefy server if you're going to be transcoding content in real time, and more so if you're going to be doing it for multiple clients simultaneously.

Smoothness and quality will come down to your machine being able to keep up, and an appropriate bitrate for the type of content you're dealing with.

The experience will never be as good as playing the native streams, but it's there as an option for the situations where it's needed.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Since v7: EPG mostly "no listings", and channels change during recordings :'( rightbryce 38 2,817 2025-05-19, 03:18 PM
Last Post: erik123
  How to change EPG "code page" hugo84 58 4,190 2025-01-22, 02:03 PM
Last Post: mvallevand
  Change Time Zone for EPG Information for Single Channel NatalieEGH1 2 531 2024-11-06, 09:05 PM
Last Post: NatalieEGH1
  Where do I change the update EPG delay time in Version: 6.1.5.231022 Yrthix 2 465 2024-07-27, 06:11 AM
Last Post: Yrthix
  Not playing or recording after router change Esteban 2 371 2024-05-31, 09:46 PM
Last Post: Esteban
  How to set up using emby guide data? Ronstang 6 892 2024-02-03, 07:47 AM
Last Post: sub
  Recordings not being recorded after antenna change thecapper 10 1,453 2023-10-24, 03:25 AM
Last Post: thecapper
  Cannot change Recording Directory to a Local Network Directory fasteddy 6 1,242 2023-09-26, 08:38 AM
Last Post: cyrano
  How to sort the Recurring, and change directory default Jakesty 13 1,790 2023-02-20, 11:58 AM
Last Post: jrockow
  Cannot change designated target folder for recording files djsinfl 1 582 2023-02-14, 01:45 AM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

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

Linear Mode
Threaded Mode