Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@wedoproduct/react-native-videoeditorsdk

imgly30BSD-3-Clause2.10.1TypeScript support: included

A React Native module for VideoEditor SDK. Integrate the video editor into your own HTML5, iOS or Android app - in minutes!

react-native, video, video editor, videoeditor, videoeditorsdk, VideoEditor SDK, SDK, ios, android

readme

VideoEditor SDK Logo

NPM version Platform support Twitter

React Native module for VideoEditor SDK

Check out our video tutorial for a step-by-step integration guide which also details advanced SDK features, such as serializing and reusing previously applied editing operations.

Getting started

Install the React Native module in your project as follows:

yarn add react-native-videoeditorsdk

In general, we highly recommend using React Native 0.60 or newer. If you cannot avoid using an older React Native version you need to link the native dependencies with:

yarn react-native link

before you continue with the platform-specific guides below.

iOS

For React Native 0.60 and above autolinking is used and VideoEditor SDK for iOS should be automatically installed:

cd ios && pod install && cd ..

and updated:

cd ios && pod update && cd ..

with CocoaPods.

For older React Native versions autolinking is not available and VideoEditor SDK for iOS needs to be manually integrated in your Xcode project if you don't use CocoaPods to manage your dependencies. Make sure to put ImglyKit.framework and VideoEditorSDK.framework in the ios/ directory of your project.

Android

  1. Because VideoEditor SDK for Android is quite large, there is a high chance that you will need to enable Multidex for your project as follows:

    1. Open the android/app/build.gradle file (not android/build.gradle) and add these lines at the end:
      android {
          defaultConfig {
              multiDexEnabled true
          }
      }
      dependencies {
          implementation 'androidx.multidex:multidex:2.0.1'
      }
    2. Open the android/app/src/main/java/.../MainApplication.java file and change the superclass of your MainApplication class from Application to androidx.multidex.MultiDexApplication, e.g.:
      public class MainApplication extends androidx.multidex.MultiDexApplication implements ReactApplication {
  2. Add the img.ly repository and plugin by opening the android/build.gradle file (not android/app/build.gradle) and adding these lines at the top:

    buildscript {
        repositories {
            jcenter()
            maven { url "https://plugins.gradle.org/m2/" }
            maven { url "https://artifactory.img.ly/artifactory/imgly" }
        }
        dependencies {
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10"
            classpath 'ly.img.android.sdk:plugin:8.3.1'
        }
    }

    In order to update VideoEditor SDK for Android replace the version string 8.3.1 with a newer release.

  3. Configure VideoEditor SDK for Android by opening the android/app/build.gradle file (not android/build.gradle) and adding the following lines under apply plugin: "com.android.application":

    apply plugin: 'ly.img.android.sdk'
    apply plugin: 'kotlin-android'
    
    // Comment out the modules you don't need, to save size.
    imglyConfig {
        modules {
            include 'ui:text'
            include 'ui:focus'
            include 'ui:frame'
            include 'ui:brush'
            include 'ui:filter'
            include 'ui:sticker'
            include 'ui:overlay'
            include 'ui:transform'
            include 'ui:adjustment'
            include 'ui:text-design'
            include 'ui:video-trim'
            include 'ui:video-library'
            include 'ui:video-composition'
            include 'ui:audio-composition'
    
            // This module is big, remove the serializer if you don't need that feature.
            include 'backend:serializer'
    
            // Remove the asset packs you don't need, these are also big in size.
            include 'assets:font-basic'
            include 'assets:frame-basic'
            include 'assets:filter-basic'
            include 'assets:overlay-basic'
            include 'assets:sticker-shapes'
            include 'assets:sticker-emoticons'
            include 'assets:sticker-animated'
    
            include 'backend:sticker-animated'
            include 'backend:sticker-smart'
        }
    }

Usage

Import the module in your App.js:

import {VESDK, VideoEditorModal, Configuration} from 'react-native-videoeditorsdk';

Each platform requires a separate license file. Unlock VideoEditor SDK automatically for both platforms with a single line of code via platform-specific file extensions:

VESDK.unlockWithLicense(require('./vesdk_license'));

Open the editor with a video:

VESDK.openEditor(require('./video.mp4'));

Or use the component to open the editor:

<VideoEditorModal visible={true} video={require('./video.mp4')}/>

Please see the code documentation for more details and additional customization and configuration options.

For configuring and customizing VideoEditor SDK beyond these options exposed to JavaScript the iOS bridge provides an interface for native customization. Please refer to our documentation for more details on native customization.

Example

Please see our example project which demonstrates how to use the React Native module for VideoEditor SDK.

License Terms

Make sure you have a commercial license for VideoEditor SDK before releasing your app. A commercial license is required for any app or service that has any form of monetization: This includes free apps with in-app purchases or ad supported applications. Please contact us if you want to purchase the commercial license.

Support and License

Use our service desk for bug reports or support requests. To request a commercial license, please use the license request form on our website.

changelog

[2.10.1]

Fixed

  • [Android] Fixed compiling issues with compileSdkVersion 30.
  • [Android] Fixed video not being loaded when opening a single video without having video composition enabled in the license.

[2.10.0]

Added

  • Added integration and documentation for new video library and audio library.

Fixed

  • [Android] Fixed crash when loading a serialization.

[2.9.0]

Added

  • [Android] Added integration for new video composition tool.

[2.8.0]

Added

  • [iOS] Added integration and documentation for new video composition tool. Android support will be added in a later release.

[2.7.0]

Changed

  • Updated identifier documentation for replaced and new fonts.

Added

  • [iOS] Added support to replace the VideoEditViewController with custom subclasses.

[2.6.1]

Changed

  • [Android] Raised minimum VideoEditor SDK for Android version to 8.0.8.

[2.6.0]

Changed

  • [Android] Added support for VideoEditor SDK for Android version 8.0.4 and above.
  • [Android] Raised minimum VideoEditor SDK for Android version to 8.0.4.

[2.5.0]

Removed

  • 🚨 Removed createDefaultConfiguration as the created object is redundant with the Configuration documentation and it contains the options that are used per default when the editor is launched without a given configuration.

Added

  • Added integration and identifier documentation for new smart stickers.
  • Added integration and identifier documentation for new GIF sticker category and stickers.

[2.4.2]

Fixed

  • [Android] Fixed serialization export file URL to include the schema.
  • [Android] Fixed crash when exporting serialization for remote videos.
  • [Android] 🚨 Fixed export result type to video which was image before.

[2.4.1]

  • Same version as 2.4.0. Bumped version to keep the version consistent with react-native-photoeditorsdk.

[2.4.0]

Changed

  • [iOS] 🚨 LUTFilter tile configurations are not parsed from the lutURI filename anymore and the default changed from a 8x8 to a 5x5 tile configuration. Please use the newly added configuration options to configure the tile layout independent of the filename.

Added

  • Added tile configuration options for LUTFilter.

[2.3.2]

Fixed

  • [Android] Fixed loading of static resources for release builds.

[2.3.1]

Fixed

  • Fixed and updated getting started section of the readme for React Native versions older than 0.60.

[2.3.0]

Added

  • Added VideoEditorModal component that can be used instead of the VESDK.openEditor function to modally present a video editor.

[2.2.2]

Fixed

  • Fixed default ordering of the frames for cross-platform consistency.

[2.2.1]

Fixed

  • [iOS] Fixed possible archive issue with React Native versions older than 0.60.
  • [Android] Fixed "Can only use lower 16 bits for requestCode" exception.

[2.2.0]

Added

  • [iOS] Added an interface for native customization. Set the RNVideoEditorSDK.configureWithBuilder and RNVideoEditorSDK.willPresentVideoEditViewController properties of the bridge module to tweak VideoEditor SDK to your needs beyond the configuration options exposed to JavaScript.

Fixed

  • [Android] Fixed possible NPE if other native libraries register addActivityEventListener().

[2.1.2]

Fixed

  • [Android] Fixed possible compile issue with React Native versions older than 0.60.

[2.1.1]

Fixed

  • [iOS] Fixed duplicate symbols for constants when using VideoEditor SDK and PhotoEditor SDK in the same project.
  • [iOS] Fixed return null if the editor is dismissed without exporting the edited video.

[2.1.0]

Changed

  • [iOS] Updated VideoEditor SDK for iOS to version 10.7.0 and above.

Fixed

  • [iOS] Fixed automatic (CocoaPods) installation process so that VideoEditor SDK and PhotoEditor SDK can be used in the same project.
  • [iOS] Fixed FRAMEWORK_SEARCH_PATHS for manual linking VideoEditor SDK which is required for React Native versions older than 0.60.
  • Add missing Platform import when using React Native versions older than 0.60.

[2.0.1]

Fixed

  • [Android] Fixed error message: "tools: replace" attribute that is linked to the "provider" element type is not bound.

[2.0.0]

Added

  • [Android] Added support for VideoEditor SDK for Android version 7.1.5 and above.

[1.3.0]

Changed

  • [iOS] Updated VideoEditor SDK for iOS to version 10.6.0.

[1.2.0]

Changed

  • [iOS] Updated VideoEditor SDK for iOS to version 10.5.0.

[1.1.0]

Added

  • [iOS] Updated VideoEditor SDK for iOS to version 10.4.0.
  • Added configuration options for personal stickers.

[1.0.2]

Fixed

  • [iOS] Fixed unlockWithLicense.

[1.0.0]

Added

  • [iOS] Initial release of the React Native module for VideoEditor SDK. This version adds support for iOS only. Android support will be added in a later release.