pixelflux 1.4.1__tar.gz → 1.4.2__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.
- {pixelflux-1.4.1/pixelflux.egg-info → pixelflux-1.4.2}/PKG-INFO +1 -1
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/screen_capture_module.cpp +3 -3
- {pixelflux-1.4.1 → pixelflux-1.4.2/pixelflux.egg-info}/PKG-INFO +1 -1
- {pixelflux-1.4.1 → pixelflux-1.4.2}/setup.py +1 -1
- {pixelflux-1.4.1 → pixelflux-1.4.2}/LICENSE +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/MANIFEST.in +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/README.md +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/__init__.py +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/__pycache__/__init__.cpython-311.pyc +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/include/cuda.h +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/include/nvEncodeAPI.h +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/include/stb_image.h +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/include/xxhash.c +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux/include/xxhash.h +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux.egg-info/SOURCES.txt +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux.egg-info/dependency_links.txt +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pixelflux.egg-info/top_level.txt +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/pyproject.toml +0 -0
- {pixelflux-1.4.1 → pixelflux-1.4.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pixelflux
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.2
|
|
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
|
|
@@ -3424,18 +3424,18 @@ StripeEncodeResult encode_stripe_h264(
|
|
|
3424
3424
|
param.i_bframe = 0;
|
|
3425
3425
|
param.i_threads = h264_streaming_mode ? 0 : 1;
|
|
3426
3426
|
param.i_log_level = X264_LOG_ERROR;
|
|
3427
|
-
param.vui.b_fullrange =
|
|
3427
|
+
param.vui.b_fullrange = 0;
|
|
3428
3428
|
param.vui.i_sar_width = 1;
|
|
3429
3429
|
param.vui.i_sar_height = 1;
|
|
3430
3430
|
if (param.i_csp == X264_CSP_I444) {
|
|
3431
3431
|
param.vui.i_colorprim = 1;
|
|
3432
3432
|
param.vui.i_transfer = 1;
|
|
3433
|
-
param.vui.i_colmatrix =
|
|
3433
|
+
param.vui.i_colmatrix = 6;
|
|
3434
3434
|
x264_param_apply_profile(¶m, "high444");
|
|
3435
3435
|
} else {
|
|
3436
3436
|
param.vui.i_colorprim = 1;
|
|
3437
3437
|
param.vui.i_transfer = 1;
|
|
3438
|
-
param.vui.i_colmatrix =
|
|
3438
|
+
param.vui.i_colmatrix = 6;
|
|
3439
3439
|
x264_param_apply_profile(¶m, "baseline");
|
|
3440
3440
|
}
|
|
3441
3441
|
param.b_aud = 0;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pixelflux
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.2
|
|
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
|
|
@@ -53,7 +53,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
53
53
|
|
|
54
54
|
setup(
|
|
55
55
|
name="pixelflux",
|
|
56
|
-
version="1.4.
|
|
56
|
+
version="1.4.2",
|
|
57
57
|
author="Linuxserver.io",
|
|
58
58
|
author_email="pypi@linuxserver.io",
|
|
59
59
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|