zhiliang729 / SlideShowMaker

iOS: Multiple images to Video with animations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

iOS: Multiple images to Video with animations

License:MIT License


Languages

Language:Swift 96.7%Language:Ruby 3.3%