pixelflux 1.2.9__tar.gz → 1.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pixelflux might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pixelflux
3
- Version: 1.2.9
3
+ Version: 1.3.0
4
4
  Summary: A performant web native pixel delivery pipeline for diverse sources, blending VNC-inspired parallel processing of pixel buffers with flexible modern encoding formats.
5
5
  Home-page: https://github.com/linuxserver/pixelflux
6
6
  Author: Linuxserver.io
@@ -93,6 +93,7 @@ settings.paint_over_jpeg_quality = 90 # Quality for static "paint-over" stripe
93
93
  settings.h264_crf = 23 # CRF value (0-51, lower is better quality/higher bitrate)
94
94
  settings.h264_fullcolor = False # Use I444 (full color) instead of I420 for software encoding
95
95
  settings.h264_fullframe = True # Encode full frames (required for HW accel) instead of just changed stripes
96
+ settings.h264_streaming_mode = False # Bypass all VNC logic and work like a normal video encoder, higher constant CPU usage for fullscreen gaming/videos
96
97
 
97
98
  # --- Hardware Acceleration ---
98
99
  # Set to >= 0 to enable VA-API on a specific /dev/dri/renderD* node.
@@ -79,6 +79,7 @@ settings.paint_over_jpeg_quality = 90 # Quality for static "paint-over" stripe
79
79
  settings.h264_crf = 23 # CRF value (0-51, lower is better quality/higher bitrate)
80
80
  settings.h264_fullcolor = False # Use I444 (full color) instead of I420 for software encoding
81
81
  settings.h264_fullframe = True # Encode full frames (required for HW accel) instead of just changed stripes
82
+ settings.h264_streaming_mode = False # Bypass all VNC logic and work like a normal video encoder, higher constant CPU usage for fullscreen gaming/videos
82
83
 
83
84
  # --- Hardware Acceleration ---
84
85
  # Set to >= 0 to enable VA-API on a specific /dev/dri/renderD* node.
@@ -18,6 +18,7 @@ class CaptureSettings(ctypes.Structure):
18
18
  ("h264_crf", ctypes.c_int),
19
19
  ("h264_fullcolor", ctypes.c_bool),
20
20
  ("h264_fullframe", ctypes.c_bool),
21
+ ("h264_streaming_mode", ctypes.c_bool),
21
22
  ("capture_cursor", ctypes.c_bool),
22
23
  ("watermark_path", ctypes.c_char_p),
23
24
  ("watermark_location_enum", ctypes.c_int),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pixelflux
3
- Version: 1.2.9
3
+ Version: 1.3.0
4
4
  Summary: A performant web native pixel delivery pipeline for diverse sources, blending VNC-inspired parallel processing of pixel buffers with flexible modern encoding formats.
5
5
  Home-page: https://github.com/linuxserver/pixelflux
6
6
  Author: Linuxserver.io
@@ -93,6 +93,7 @@ settings.paint_over_jpeg_quality = 90 # Quality for static "paint-over" stripe
93
93
  settings.h264_crf = 23 # CRF value (0-51, lower is better quality/higher bitrate)
94
94
  settings.h264_fullcolor = False # Use I444 (full color) instead of I420 for software encoding
95
95
  settings.h264_fullframe = True # Encode full frames (required for HW accel) instead of just changed stripes
96
+ settings.h264_streaming_mode = False # Bypass all VNC logic and work like a normal video encoder, higher constant CPU usage for fullscreen gaming/videos
96
97
 
97
98
  # --- Hardware Acceleration ---
98
99
  # Set to >= 0 to enable VA-API on a specific /dev/dri/renderD* node.
@@ -54,7 +54,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
54
54
 
55
55
  setup(
56
56
  name="pixelflux",
57
- version="1.2.9",
57
+ version="1.3.0",
58
58
  author="Linuxserver.io",
59
59
  author_email="pypi@linuxserver.io",
60
60
  description="A performant web native pixel delivery pipeline for diverse sources, blending VNC-inspired parallel processing of pixel buffers with flexible modern encoding formats.",
File without changes
File without changes
File without changes
File without changes