Explicit JPEG thumbnail on capture

This commit is contained in:
Joel Collins 2020-10-27 14:04:55 +00:00
parent 9ff0aa331b
commit 09849ce064
2 changed files with 6 additions and 0 deletions

View file

@ -484,6 +484,7 @@ class PiCameraStreamer(BaseCamera):
use_video_port: bool = False,
resize: Tuple[int, int] = None,
bayer: bool = True,
thumbnail: tuple = None
):
"""
Capture a still image to a StreamObject.
@ -515,6 +516,7 @@ class PiCameraStreamer(BaseCamera):
resize=resize,
bayer=(not use_video_port) and bayer,
use_video_port=use_video_port,
thumbnail=thumbnail
)
# Set resolution and start stream recording if necessary