camera_start_video_group()

Updated: April 19, 2023

Start synchronized video recording or encording of the cameras associated with a given video group

Synopsis:

#include <camera/camera_api.h>
camera_error_t camera_start_video_group(camera_video_group_id_t group_id)

Arguments:

group_id
The ID of the video group (see camera_video_group_id_t).

Library:

libcamapi

Description:

This function simultaneously starts video recording or encoding for all cameras associated with the given video group. Before you call this function, you must have called camera_start_video() or camera_start_encode() for all associated cameras.

To stop video recording or encoding, call camera_stop_video_group().

Returns:

CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.