> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XAppCaptureRecordClipResult

> XAppCaptureRecordClipResult

# XAppCaptureRecordClipResult

Captured video clip and descriptive information.

## Syntax

```cpp theme={null}
typedef struct XAppCaptureRecordClipResult {  
    char path[MAX_PATH];  
    size_t fileSize;  
    time_t startTime;  
    uint32_t durationInMs;  
    uint32_t width;  
    uint32_t height;  
    XAppCaptureVideoEncoding encoding;  
} XAppCaptureRecordClipResult  
```

### Members

*path*\
Type: char\[MAX\_PATH]

Path to the captured video.

*fileSize*\
Type: size\_t

Size of the captured video clip.

*startTime*\
Type: time\_t

Start time of the captured video clip.

*durationInMs*\
Type: uint32\_t

Duration of the recorded video clip in milliseconds.

*width*\
Type: uint32\_t

Width of the recorded clip measured in pixels.

*height*\
Type: uint32\_t

Height of the recorded clip measured in pixels.

*encoding*\
Type: [XAppCaptureVideoEncoding](/reference/system/xappcapture/enums/xappcapturevideoencoding)

Video encoding format for the recorded clip.

## Remarks

This struct describes and provides access to the recorded clip made with [XAppCaptureRecordDiagnosticClip](/reference/system/xappcapture/functions/xappcapturerecorddiagnosticclip). The recorded clip is saved in the same partition as the game so it can be accessed using the *path* parameter instead of needing to open a stream. This recorded clip does not behave as it if was taken by a user and will not be stored with a users recorded game clips.

## Requirements

**Header:** XAppCapture.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

## See also

[GameDVR Overview](/build/console-features/game-dvr/gamedvr-broadcast)\
[XAppCapture Members](/reference/system/xappcapture/xappcapture_members)\
[XAppCaptureRecordDiagnosticClip](/reference/system/xappcapture/functions/xappcapturerecorddiagnosticclip)


## Related topics

- [XAppCaptureRecordDiagnosticClip](/reference/system/xappcapture/functions/xappcapturerecorddiagnosticclip.md)
- [XAppCapture](/reference/system/xappcapture/xappcapture_members.md)
- [XAppCaptureVideoEncoding](/reference/system/xappcapture/enums/xappcapturevideoencoding.md)
- [XAppCaptureRecordTimespan](/reference/system/xappcapture/functions/xappcapturerecordtimespan.md)
- [XAppCaptureStopUserRecord](/reference/system/xappcapture/functions/xappcapturestopuserrecord.md)
