Skip to content

Commit

Permalink
prep 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik committed Mar 26, 2021
1 parent 759685c commit 4ac6692
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.0] - 2012-03-22
## [0.7.0] - 2021-03-26
### Added
- [API documentation](https://letmaik.github.io/pyvirtualcam).
- `pyvirtualcam.register_backend()` for registering custom backends.
- `latency.py` sample for visually evaluating latency.
- `--filter` flag in `webcam_filter.py` sample for choosing a filter (`shake` or `none`).

## [0.6.0] - 2021-03-22
### Added
- 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.
- Support for common pixel formats: RGB (default), BGR (useful for OpenCV), GRAY, I420, NV12, YUYV, UYVY.
Expand All @@ -13,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- RGBA support has been removed. Use RGB instead.

## [0.5.0] - 2012-03-13
## [0.5.0] - 2021-03-13
### Added
- Linux: multiple camera support (#37).
- 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.
Expand Down Expand Up @@ -81,6 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support for [OBS-VirtualCam](https://github.com/CatxFish/obs-virtual-cam).


[0.7.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/letmaik/pyvirtualcam/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/letmaik/pyvirtualcam/compare/v0.3.1...v0.3.2
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ with pyvirtualcam.Camera(width=1280, height=720, fps=20) as cam:

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

See also the [API Documentation](https://letmaik.github.io/pyvirtualcam).

## Installation

This package works on Windows, macOS, and Linux. Install it from PyPI with:
Expand Down
2 changes: 1 addition & 1 deletion pyvirtualcam/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"

0 comments on commit 4ac6692

Please sign in to comment.