Compare commits

..

1 commit

Author SHA1 Message Date
Vinzenz Schroeter 4f6ff4c586 stream video file
Some checks failed
Rust / build (pull_request) Failing after 1m47s
2025-05-04 17:17:02 +02:00

View file

@ -69,6 +69,7 @@ Commands:
flip Invert the state of all pixels [aliases: f]
on Set all pixels to the on state
image Send an image file (e.g. jpeg or png) to the display. [aliases: i]
video Stream a video file (e.g. mp4) to the display. [aliases: v]
screen Stream the default screen capture source to the display. On Linux Wayland, this pops up a screen or window chooser, but it also may directly start streaming your main screen. [aliases: s]
```
@ -91,6 +92,25 @@ Options:
--no-aspect Do not keep aspect ratio when resizing.
```
#### Video file
```text
Stream a video file (e.g. mp4) to the display.
Usage: servicepoint-cli pixels video [OPTIONS] <FILE_NAME>
Arguments:
<FILE_NAME>
Options:
--no-hist Disable histogram correction
--no-blur Disable blur
--no-sharp Disable sharpening
--no-dither Disable dithering. Brightness will be adjusted so that around half of the pixels are on.
--no-spacers Do not remove the spacers from the image.
--no-aspect Do not keep aspect ratio when resizing.
```
#### Screen
```text