How can I remove the Filters button?

  • Android

In order to remove the Filters button on the Camera screen, please set the following:

CameraConfig(
  banubaColorEffectsAssetsPath = null
)

And this is for the Editor screen:

EditorConfig(
editorBanubaColorEffectsAssetsPath = null
)
  • iOS

There are code examples for Camera and Editor screens:

    var config = VideoEditorConfig()
    
    config.recorderConfiguration.additionalEffectsButtons = config.recorderConfiguration.additionalEffectsButtons.filter { $0.identifier != .effects }
    config.editorConfiguration.additionalEffectsButtons = config.editorConfiguration.additionalEffectsButtons.filter { $0.identifier != .color }
1 Like