How can I remove the Music button?

  • Android

In order to remove the Music button on the Camera screen, please set the relevant config supportsExternalMusic to false.
To do the same on the Editor screen, please set editorSupportsMusicMixer to false.

  • iOS

Here are the code examples to hide the music button on the Camera and Editor screens
config.editorConfiguration.additionalEffectsButtons = config.editorConfiguration.additionalEffectsButtons.filter { $0.identifier != .sound }
config.recorderConfiguration.additionalEffectsButtons = config.recorderConfiguration.additionalEffectsButtons.filter { $0.identifier != .sound }

1 Like