Recorder

Download

Unity Cheat Sheet: #49

Recorder Controller

  • Start/stop with recorderController.StartRecording()/StopRecording()
  • Check status with recorderController.IsRecording()
  • Initialize settings with recorderController.PrepareRecording()

Controller Settings

  • Add recording types with recorderControllerSettings.AddRecorderSettings()
  • Enable script control with SetRecordModeToManual()

Base Settings

  • Configure with recorderSettings.FrameRate, OutputFile
  • Set resolution with recorderSettings.ImageWidth/Height
  • Create time-lapse with recorderSettings.CaptureEveryNthFrame

Video Settings

  • Set format with movieRecorderSettings.OutputFormat
  • Adjust quality with movieRecorderSettings.VideoBitrateMode
  • Configure audio with movieRecorderSettings.AudioInputSettings

Image Settings

  • Choose format with imageRecorderSettings.OutputFormat
  • Toggle transparency with imageRecorderSettings.CaptureAlpha
  • Set color space with imageRecorderSettings.ColorSpace

GIF Settings

  • Control speed with gifRecorderSettings.FrameRate
  • Adjust quality with gifRecorderSettings.Quality

Audio Settings

  • Set format with audioRecorderSettings.OutputFormat
  • Configure sources with audioRecorderSettings.AudioInputSettings

Input Sources

  • Capture game view with gameViewInputSettings.CaptureGameView()
  • Record specific camera with cameraInputSettings.CaptureCamera()
  • Capture render textures with renderTextureInputSettings.CaptureTexture()

Options

  • Toggle legacy recorders with Options.showLegacyRecorders
  • Show/hide GameObject with Options.showRecorderGameObject
  • Enable debug logs with Options.verboseMode

Show More