You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`pyvirtualcam.register_backend()` for registering custom backends.
11
+
-`latency.py` sample for visually evaluating latency.
12
+
-`--filter` flag in `webcam_filter.py` sample for choosing a filter (`shake` or `none`).
13
+
14
+
## [0.6.0] - 2021-03-22
8
15
### Added
9
16
- Support for device selection on Linux: `Camera(..., device="/dev/video0")`. On Windows/macOS there is only a single valid device `"OBS Virtual Camera"` when using the built-in backends.
10
17
- Support for common pixel formats: RGB (default), BGR (useful for OpenCV), GRAY, I420, NV12, YUYV, UYVY.
@@ -13,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
20
### Removed
14
21
- RGBA support has been removed. Use RGB instead.
15
22
16
-
## [0.5.0] - 2012-03-13
23
+
## [0.5.0] - 2021-03-13
17
24
### Added
18
25
- Linux: multiple camera support (#37).
19
26
- If `print_fps=True` and `Camera.sleep_until_next_frame()` is used, the percentage of time spent in computation is printed in addition to fps.
@@ -81,6 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
81
88
- Support for [OBS-VirtualCam](https://github.com/CatxFish/obs-virtual-cam).
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ with pyvirtualcam.Camera(width=1280, height=720, fps=20) as cam:
19
19
20
20
For more examples, including using different pixel formats like BGR, or selecting a specific camera device on Linux, check out the [`samples/`](samples) folder.
21
21
22
+
See also the [API Documentation](https://letmaik.github.io/pyvirtualcam).
23
+
22
24
## Installation
23
25
24
26
This package works on Windows, macOS, and Linux. Install it from PyPI with:
0 commit comments