Determines the highest resolution the user can select for capturing video.
Syntax
var value = Windows.Media.Capture.CameraCaptureUIMaxVideoResolution.highestAvailable;
Attributes
- VersionAttribute(NTDDI_WIN8)
Members
The CameraCaptureUIMaxVideoResolution enumeration has these members.
| Member | Value | Description |
|---|---|---|
| HighestAvailable | highestAvailable | 0 |
The user can select any resolution. |
| LowDefinition | lowDefinition | 1 |
The user can select resolutions up to low definition resolutions. |
| StandardDefinition | standardDefinition | 2 |
The user can select resolutions up to standard definition resolutions. |
| HighDefinition | highDefinition | 3 |
The user can select resolutions up to high definition resolutions. |
Examples
The following example sets the resolution to the standard definition.
// Captures a video using the specified settings. function captureVideo() { var captureUI = new Windows.Media.Capture.CameraCaptureUI(); captureUI.videoSettings.allowTrimming = true; captureUI.videoSettings.format = Windows.Media.Capture.CameraCaptureUIVideoFormat.wmv; captureUI.videoSettings.maxResolution = Windows.Media.Capture.CameraCaptureUIMaxVideoResolution.standardDefinition; captureUI.videoSettings.maxDurationInSeconds = 3; captureUI.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.video).then(function (file) { if (file) { document.getElementById("message").innerHTML = "User captured a video." } else { document.getElementById("message").innerHTML = "User didn't capture a video." } }); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
Build date: 12/4/2012