MediaCapture.RecordLimitationExceeded | recordlimitationexceeded event

1 out of 2 rated this helpful - Rate this topic

Occurs when the record limit is exceeded.

Syntax


function onRecordLimitationExceeded(eventArgs) { /* Your code */ }
 
// addEventListener syntax
mediaCapture.addEventListener("recordlimitationexceeded", onRecordLimitationExceeded);
mediaCapture.removeEventListener("recordlimitationexceeded", onRecordLimitationExceeded);
 
- or -

mediaCapture.onrecordlimitationexceeded = onRecordLimitationExceeded;


Event information

Delegate RecordLimitationExceededEventHandler

Remarks

If an app receives a RecordLimitationExceeded event, it is expected to finalize the file it is recording. If it does not finalize, the capture engine will stop sending samples to the file that the app was recording to.

In Windows 8, the current record limit is three hours.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.Media.Capture
Windows::Media::Capture [C++]

Metadata

Windows.winmd

See also

StartRecordToStorageFileAsync
MediaCapture

 

 

Build date: 12/4/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.