> ## Documentation Index
> Fetch the complete documentation index at: https://cometchat-013b37f0.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Recording

This section will guide you to implement call recording feature for the voice and video calls.

## Implementation

Once you have decided to implement [Default Calling](/sdk/ios/3.0/default-calling) or [Direct Calling](/sdk/ios/3.0/direct-calling) calling and followed the steps to implement them. Just few additional listeners and methods will help you quickly implement call recording in your app.

You need to make changes in the CometChat.startCall method and add the required listeners for recording. Please make sure your callSettings is configured accordingly for [Default Calling](/sdk/ios/3.0/default-calling) or [Direct Calling](/sdk/ios/3.0/direct-calling).

A basic example of how to make changes to implement recording for a direct/default call:

<Tabs>
  <Tab title="Swift">
    ```swift theme={null}
    let sessionID = "12345" //you can set anything
    let callView = UIView()// a UIView you want to show the calling view in

    let callSettings = CallSettings.CallSettingsBuilder(callView: callView, sessionId:sessionID).setAudioOnlyCall(audioOnly: true).enableDefaultLayout(defaultLayout: true).build()

      CometChat.startCall(callSettings: callSettings, userJoined: { (user) in
      }, userLeft: { (user) in
      }, userListUpdated: { (userList) in
      }, audioModesUpdated: { (audioList) in             
      }, onUserMuted: {onUserMuted in 
      }, onCallSwitchedToVideo: {callSwitchVideo in
      }, onRecordingStarted: {onRecordingStarted in 
      		print("onRecordingStarted \(onRecordingStarted)")  
      }, onRecordingStopped: {onRecordingStopped in 
      		print("onRecordingStopped \(onRecordingStopped)")  
    	}, onError: { (error) in
          print("OnError \(error!.errorDescription)")
      }) { (call) in
          print("onCallended \(call)")
      }
    ```
  </Tab>
</Tabs>

## Settings for call recording

The `CallSettings`class allows you to customise the overall calling experience. The properties for the call/conference can be set using the `CallSettingsBuilder` class. This will eventually give you and object of the `CallSettings` class which you can pass to the `startCall()` method to start the call.

The options available for recording of calls are:

| Setting                                                        | Description                                                                                                                                                                          |
| -------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `showCallRecordButton(boolean showCallRecordButton)`           | If set to `true` it displays the Recording button in the button Layout. if set to `false` it hides the Recording button in the button Layout. **Default value = false**              |
| `startRecordingOnCallStart(boolean startRecordingOnCallStart)` | If set to `true` call recording will start as soon as the call is started. if set to `false` call recording will not start as soon as the call is started. **Default value = false** |

### Start Recording

You can use the startRecording() method to start call recording.

<Tabs>
  <Tab title="Swift">
    ```swift theme={null}
    CallManager.startRecording()
    ```
  </Tab>
</Tabs>

### Stop Recording

You can use the stopRecording() method to stop call recording.

<Tabs>
  <Tab title="Swift">
    ```swift theme={null}
    CallManager.stopRecording()
    ```
  </Tab>
</Tabs>
