pixelflux 1.3.3__tar.gz → 1.4.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.3.3
3
+ Version: 1.4.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
@@ -162,6 +162,7 @@ A comprehensive example, `screen_to_browser.py`, is located in the `example` dir
162
162
  * An `asyncio`-based WebSocket server to stream encoded H.264 frames.
163
163
  * An HTTP server to serve a client-side HTML page for viewing the stream.
164
164
  * The `pixelflux` module to perform the screen capture and encoding.
165
+ * Dynamic capture region selection via the URL hash.
165
166
 
166
167
  **To run this example:**
167
168
 
@@ -180,7 +181,10 @@ A comprehensive example, `screen_to_browser.py`, is located in the `example` dir
180
181
  ```bash
181
182
  python3 screen_to_browser.py
182
183
  ```
183
- 4. Open your web browser and go to the URL indicated by the script's output (usually `http://localhost:9001`) to view the live stream.
184
+ 4. Open your web browser to view the live stream. You can control the capture area:
185
+ * **`http://localhost:9001`**: Captures from the screen's top-left corner (x=0).
186
+ * **`http://localhost:9001/#50`**: Captures a region starting at x=50.
187
+ * You can open multiple browser tabs with different hash values to see multiple, independent capture sessions running from the single server instance.
184
188
 
185
189
  ## License
186
190
 
@@ -148,6 +148,7 @@ A comprehensive example, `screen_to_browser.py`, is located in the `example` dir
148
148
  * An `asyncio`-based WebSocket server to stream encoded H.264 frames.
149
149
  * An HTTP server to serve a client-side HTML page for viewing the stream.
150
150
  * The `pixelflux` module to perform the screen capture and encoding.
151
+ * Dynamic capture region selection via the URL hash.
151
152
 
152
153
  **To run this example:**
153
154
 
@@ -166,7 +167,10 @@ A comprehensive example, `screen_to_browser.py`, is located in the `example` dir
166
167
  ```bash
167
168
  python3 screen_to_browser.py
168
169
  ```
169
- 4. Open your web browser and go to the URL indicated by the script's output (usually `http://localhost:9001`) to view the live stream.
170
+ 4. Open your web browser to view the live stream. You can control the capture area:
171
+ * **`http://localhost:9001`**: Captures from the screen's top-left corner (x=0).
172
+ * **`http://localhost:9001/#50`**: Captures a region starting at x=50.
173
+ * You can open multiple browser tabs with different hash values to see multiple, independent capture sessions running from the single server instance.
170
174
 
171
175
  ## License
172
176