Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.58 KB

README.markdown

File metadata and controls

46 lines (35 loc) · 1.58 KB

Regift

Easily convert a video to a GIF on iOS.

Demo

Visit the Regift demo repository for a sample app.

Version License Platform

Installation

Cocoapods

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

pod "Regift"

Manual

Install the framework (reference c/o Alamofire)

  1. git submodule add https://github.com/matthewpalmer/Regift.git
  2. Open the newly created folder, 'Regift', in Finder
  3. Drag Regift.xcodeproj to the file navigator (left sidebar) of your project
  4. Click on your app's target, then click on Build Phases
  5. Follow the gif Regift convert video to gift in Swift
  6. import Regift wherever you need it

Quick Start

import Regift
let videoURL   = ...
let frameCount = 16
let delayTime  = 0.2
let loopCount  = 0    // 0 means loop forever

if let gifURL = Regift.createGIFFromURL(videoURL, withFrameCount: frameCount, delayTime: delayTime, loopCount: loopCount) {
    println("Gif saved to \(gifURL)")
}

Acknowledgements

Thanks to Rob Mayoff's Gist, without which this library wouldn't exist.