<!--
{
  "availability" : [
    "iOS: 15.0.0 - 27.0.0",
    "iPadOS: 15.0.0 - 27.0.0",
    "macCatalyst: 15.0.0 - 27.0.0",
    "macOS: 12.0.0 - 27.0.0",
    "tvOS: 15.2.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "ReplayKit",
  "identifier" : "/documentation/ReplayKit/RPScreenRecorder/exportClip(to:duration:completionHandler:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "ReplayKit"
    ],
    "preciseIdentifier" : "c:objc(cs)RPScreenRecorder(im)exportClipToURL:duration:completionHandler:"
  },
  "title" : "exportClip(to:duration:completionHandler:)"
}
-->

# exportClip(to:duration:completionHandler:)

Exports a clip recording to a file.

```
func exportClip(to url: URL, duration: TimeInterval, completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
```

```
func exportClip(to url: URL, duration: TimeInterval) async throws
```

## Parameters

`url`

The URL of the destination file.

`duration`

The duration for clip recording, in seconds. The system caps the duration at to the elapsed time, or a maximum of 15 seconds, whichever is shorter.

`completionHandler`

A closure the system calls after it finishes exporting the clip. The system passes an error object to the closure if it encountered a problem writing the clip to disk.

## Discussion

> Important:
> You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration:
> 
> ```swift
> func exportClip(to url: URL, duration: TimeInterval) async throws
> ```
> 
> For information about concurrency and asynchronous code in Swift, see <doc://com.apple.documentation/documentation/Swift/calling-objective-c-apis-asynchronously>.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)