Skip to content

[Proposal] Camera Video Recording #2706

Open
@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 packagechampionA member of the .NET MAUI Toolkit core team has chosen to champion this featureneeds discussionDiscuss it on the next Monthly standupproposalA fully fleshed out proposal describing a new feature in syntactic and semantic detail

Type

No type

Projects

Status

Proposal Championed

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions