Released on Aug 29, 2025

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

</aside>

List of changes

Add Templates to Camera screen

We've added a new Templates button to the camera screen for instant access to all your favorite templates.

ve_camtempl_296x640_.gif

Rotate Video at New Video Editor

Added video rotation functionality to the New Video Editor, allowing users to rotate video clips in 90-degree increments (0°, 90°, 180°, 270°). This feature was previously available in the Old Video Editor and has now been successfully ported to the new UI with improved performance and stability.

ve_rotate2_296x640_.gif

ve_rotate1_296x640_.gif

Migration Guide

Upgrade SDK version

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

</aside>

CocoaPods

Below is Podfile for 1.47.1 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.47.1'
  
  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.47.1 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.47.1'
  
  pod 'BanubaVideoEditorSDK', banuba_sdk_version
  pod 'BanubaSDKSimple', banuba_sdk_version

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