Released on Aug 29, 2025
<aside> 💡 All migrations to 1.47.x releases you can find in the main sample on GitHub.
</aside>
We've added a new Templates button to the camera screen for instant access to all your favorite templates.
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.
<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