Released on March 21, 2025

<aside> 💡 All migrations to 1.41.x releases you can find in the main sample on GitHub

</aside>

List of changes

AI Clipping

One of the most unique features of Banuba Video Editor SDK is its AI clipping. It lets users automatically combine three or more videos into one with AI choosing the key moments and matching the resulting clip to the beat of the music. In the new version of the SDK, accessing it has become easier, and the accuracy of the AI improved.

AI_Clipping2_15s_296x640_.gif

<aside> ❗

The feature is not enabled by default.

Contact Banuba representatives to know more.

</aside>

Migration Guide

Upgrade SDK version

<aside> ❗ Please check out Pull Request with migration changes.

</aside>

CocoaPods

Below is Podfile for 1.41.0 release with Face AR.

source '<https://github.com/Banuba/specs.git>'
source '[<https://github.com/sdk-banuba/banuba-sdk-podspecs.git>](<https://github.com/sdk-banuba/banuba-sdk-podspecs.git>)'
platform :ios, '15.0'
use_frameworks!

target 'Example' do
  banuba_sdk_version = '1.41.0'
  
  pod 'BanubaVideoEditorSDK', banuba_sdk_version
  pod 'BanubaSDK', banuba_sdk_version

	pod 'BanubaARCloudSDK', banuba_sdk_version      #optional
  pod 'BanubaAudioBrowserSDK', banuba_sdk_version #optional
end

Below is Podfile for 1.41.0 release with NO Face AR

source '<https://github.com/Banuba/specs.git>'
source '<https://github.com/CocoaPods/Specs.git>'
platform :ios, '15.0'
use_frameworks!

target 'Example' do
  banuba_sdk_version = '1.41.0'
  
  pod 'BanubaVideoEditorSDK', banuba_sdk_version
  pod 'BanubaSDKSimple', banuba_sdk_version

	pod 'BanubaARCloudSDK', banuba_sdk_version      #optional
  pod 'BanubaAudioBrowserSDK', banuba_sdk_version #optional
end

Launch AI Clipping

<aside> 💡

Video creation with AI Clipping is available on Gallery screen by default.

</aside>