Skip to content

[Proposal] Camera Video Recording #2706

@VladislavAntonyuk

Description

@VladislavAntonyuk

Feature name

Camera Video Recording

Progress tracker

  • Android Implementation
  • iOS Implementation
  • MacCatalyst Implementation
  • Windows Implementation
  • Tizen Implementation
  • Unit Tests
  • Samples
  • Documentation

Summary

Currently Camera only allows taking pictures or previewing. It would be great to allow video recording

Detailed Design

await camera.StartVideoRecording(token);
...
var videoStream = await camera.StopVideoRecording(token);

Alternatively, if possible, get a live stream:

var recordingStream = new MemoryStream();
await camera.StartVideoRecording(recordingStream, token);
await camera.StopVideoRecording(token);

Metadata

Metadata

Labels

Camera 📸Issue/PR associated with the Camera packageapprovedThis Proposal has been approved and is ready to be added to the ToolkitchampionA member of the .NET MAUI Toolkit core team has chosen to champion this featureproposalA fully fleshed out proposal describing a new feature in syntactic and semantic detail

Type

No type

Projects

Status

Proposal Approved

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions