Skip to content

Commit 4ac6692

Browse files
committed
prep 0.7.0
1 parent 759685c commit 4ac6692

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.6.0] - 2012-03-22
7+
## [0.7.0] - 2021-03-26
8+
### Added
9+
- [API documentation](https://letmaik.github.io/pyvirtualcam).
10+
- `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
815
### Added
916
- 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.
1017
- 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
1320
### Removed
1421
- RGBA support has been removed. Use RGB instead.
1522

16-
## [0.5.0] - 2012-03-13
23+
## [0.5.0] - 2021-03-13
1724
### Added
1825
- Linux: multiple camera support (#37).
1926
- 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
8188
- Support for [OBS-VirtualCam](https://github.com/CatxFish/obs-virtual-cam).
8289

8390

91+
[0.7.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.6.0...v0.7.0
92+
[0.6.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.5.0...v0.6.0
8493
[0.5.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.4.0...v0.5.0
8594
[0.4.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.3.2...v0.4.0
8695
[0.3.2]: https://github.com/letmaik/pyvirtualcam/compare/v0.3.1...v0.3.2

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ with pyvirtualcam.Camera(width=1280, height=720, fps=20) as cam:
1919

2020
For more examples, including using different pixel formats like BGR, or selecting a specific camera device on Linux, check out the [`samples/`](samples) folder.
2121

22+
See also the [API Documentation](https://letmaik.github.io/pyvirtualcam).
23+
2224
## Installation
2325

2426
This package works on Windows, macOS, and Linux. Install it from PyPI with:

pyvirtualcam/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)