Skip to content

caughtinflux/Regift

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Easily convert a video to a GIF on iOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 95.1%
  • Objective-C 4.9%