Skip to content

ERbittuu/FaceTimeView

Repository files navigation

FaceTimeView

CI Status Version License Platform

FaceTimeViewLogo

Demo

Example

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

Requirements

Installation

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

pod "FaceTimeView"

2. Manual

Add FaceTimeView.swift file into your project.

Usage

1. Import FaceTimeView in any class you want to use it.

    import FaceTimeView

2 Add direcly into the code.

import UIKit
import FaceTimeView

            // Start live effect using front camera
            startLiveFor(type: .frontCamera, blurStyle: .light)
            
            // Start live effect using back camera
            startLiveFor(type: .backCamera)
 
            // Start live effect using gif image 
            let path = Bundle.main.path(forResource: "giphy", ofType: "gif")
            let gifURL = URL(fileURLWithPath: path!)
            
            startLiveFor(type: .gif(gifURL))
            
            // Start live effect using videos
            
            let path1 = Bundle.main.path(forResource: "v1", ofType: "mp4")
            let videoURL1 = URL(fileURLWithPath: path1!)
            
            let path2 = Bundle.main.path(forResource: "v2", ofType: "mp4")
            let videoURL2 = URL(fileURLWithPath: path2!)
            
            let path3 = Bundle.main.path(forResource: "v3", ofType: "mp4")
            let videoURL3 = URL(fileURLWithPath: path3!)
            
            startLiveFor(type: .video([videoURL1,videoURL2,videoURL3]))

Screenshots

alt Home alt ss1 alt ss2 alt ss3

Contribution

Feel free to raise issue and pull requests accepted to imrove this library.

Author

erbittuu , erbittuu@gmail.com

License

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

About

FaceTimeView is lightweight control like Facetime app(Live camera, video and other option on view backgournd)

Resources

License

Stars

Watchers

Forks

Packages

No packages published