SkillAgentSearch skills...

SlideShowMaker

iOS: Multiple images to Video with animations

Install / Use

/learn @cf-L/SlideShowMaker
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

SlideShowMaker

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

SlideShowMaker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SlideShowMaker"

Usage

let images = [#imageLiteral(resourceName: "img0"), #imageLiteral(resourceName: "img1"), #imageLiteral(resourceName: "img2"), #imageLiteral(resourceName: "img3")]
        
var audio: AVURLAsset?
var timeRange: CMTimeRange?
if let audioURL = Bundle.main.url(forResource: "Sound", withExtension: "mp3") {
	audio = AVURLAsset(url: audioURL)
	let audioDuration = CMTime(seconds: 30, preferredTimescale: audio!.duration.timescale)
    timeRange = CMTimeRange(start: kCMTimeZero, duration: audioDuration)
}
        
// OR: VideoMaker(images: images, movement: ImageMovement.fade)
let maker = VideoMaker(images: images, transition: ImageTransition.wipeMixed)
    
maker.contentMode = .scaleAspectFit
        
maker.exportVideo(audio: audio, audioTimeRange: timeRange, completed: { success, videoURL in
	if let url = videoURL {
		print(url)  // /Library/Mov/merge.mov
	}
}).progress = { progress in
	print(progress)
}

Author

cf-L, linchangfeng@live.com

License

SlideShowMaker is available under the MIT license. See the LICENSE file for more info.

Related Skills

View on GitHub
GitHub Stars28
CategoryContent
Updated2mo ago
Forks19

Languages

Swift

Security Score

90/100

Audited on Jan 28, 2026

No findings