Editor screen on React Native
Usage
Specify instance of EditorConfig in FeaturesConfig builder:
final featuresConfig = new FeaturesConfigBuilder()
.setEditorConfig(new EditorConfig({
enableVideoAspectFill: false,
supportsColorEffects: false,
supportsVisualEffects: false,
supportsVoiceOver: false,
supportsAudioEditing: false,
supportPhotoEditing: false,
supportsStickersOnVideo: false,
}))
...
.build()
Options
enableVideoAspectFill- Fill video aspect on the editor screen while playback. Default value istrue.supportsColorEffects- Determines whether the editor supports color effects. Default value istrue.supportsVisualEffects- Determines whether the editor supports visual effects. Default value istrue.supportsVoiceOver- Determines whether the editor supports voice over. Default value istrue.supportsAudioEditing- Determines whether the editor supports audio editing. Default value istrue.supportPhotoEditing- Requires the pe-sdk-react-native plugin. Determines whether the editor supports photo editing flow in Banuba Photo Editor. Default value isfalse.supportsStickersOnVideo- Determines whether the editor supports stickers on video. Default value istrue.