Language
To Local Storage
Start Editor#
For the sake of this example, we load a video from the resources into the video editor.
Configure the VideoEditorSaveSettings
to save the exported video to a custom Uri
using the setOutputToUri()
method. In this example, we create a file in the cache directory and get its Uri
using the Uri.fromFile()
method.
Handle Result#
The result from the editor is received in the onActivityResult()
method. EditorSDKResult
wraps around the intent and provides a convenient API to check the result. The Uri
of the exported video can be accessed via EditorSDKResult.resultUri
.