Code Monkey home page Code Monkey logo

abvideorangeslider's Introduction

ABVideoRangeSlider

CI Status Version License Platform

Customizable Video Range Slider for trimming videos written in Swift 3.

Portrait

Custom Indicators

Progress Indicator

Custom Time Labels

Installation

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

pod "ABVideoRangeSlider"

Example

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

Usage

  1. Insert an UIView in your Storyboard's ViewController
  2. Change the class of your view to 'ABVideoRangeSlider'
  3. Import ABVideoRangeSlider into your ViewController
  4. Control + Drag your UIView to create an IBOutlet in your ViewController
@IBOutlet var videoRangeSlider: ABVideoRangeSlider!
  1. Add ABVideoRangeSliderDelegate to your controller
  2. Setup:
// Set the video URL
var path = Bundle.main.path(forResource: "myVideo", ofType:"mp4")
videoRangeSlider.setVideoURL(videoURL: URL(fileURLWithPath: path!))

// Set the delegate
videoRangeSlider.delegate = self

// Set a minimun space (in seconds) between the Start indicator and End indicator
videoRangeSlider.minSpace = 60.0

// Set a maximun space (in seconds) between the Start indicator and End indicator - Default is 0 (no max limit)
videoRangeSlider.maxSpace = 120.0
// Set initial position of Start Indicator
videoRangeSlider.setStartPosition(seconds: 50.0)

// Set initial position of End Indicator
videoRangeSlider.setEndPosition(seconds: 150.0)

Progress indicator

You can show/hide this indicator using the following methods

    videoRangeSlider.hideProgressIndicator()
    videoRangeSlider.showProgressIndicator()

If you want to update the position:

    videoRangeSlider.updateProgressIndicator(seconds: elapsedTimeOfVideo)

You can also have the progress indicator be "sticky" follow the start crop indicator when adjusted:

    videoRangeSlider.isProgressIndicatorSticky = true

Custom Time Labels

You can customize the time label's backgrounds providing a custom UIView to videoRangeSlider.startTimeView.backgroundView.

Example

  let customView = UIView(frame: CGRect(x: 0,
                                        y: 0,
                                        width: 60,
                                        height: 40))
  customView.backgroundColor = .black
  customView.alpha = 0.5
  customView.layer.borderColor = UIColor.black.cgColor
  customView.layer.borderWidth = 1.0
  customView.layer.cornerRadius = 8.0
  videoRangeSlider.startTimeView.backgroundView = customView

Properties

  // Shows the formatted time
  timeLabel: UILabel

  // UILabel's margins - Default = 5.0
  marginTop: CGFloat     
  marginBottom: CGFloat   
  marginLeft: CGFloat      
  marginRight: CGFloat   

  // Background View
  backgroundView : UIView

Protocols

func didChangeValue(videoRangeSlider: ABVideoRangeSlider, startTime: Float64, endTime: Float64) {
    print(startTime)    // Prints the position of the Start indicator in seconds
    print(endTime)      // Prints the position of the End indicator in seconds
}
func indicatorDidChangePosition(videoRangeSlider: ABVideoRangeSlider, position: Float64) {
    print(position)      // Prints the position of the Progress indicator in seconds
}

Customization

        // Customize the Start indicator with a custom image
        let customStartIndicator =  UIImage(named: "CustomStartIndicator")
        videoRangeSlider.setStartIndicatorImage(image: customStartIndicator!)

        // Customize the End indicator with a custom image
        let customEndIndicator =  UIImage(named: "CustomEndIndicator")
        videoRangeSlider.setEndIndicatorImage(image: customEndIndicator!)

        // Customize bottom and top border with a custom image
        let customBorder =  UIImage(named: "CustomBorder")
        videoRangeSlider.setBorderImage(image: customBorder!)

        // Customize Progress indicator with a custom image
        let customProgressIndicator =  UIImage(named: "CustomProgressIndicator")
        videoRangeSlider.setProgressIndicatorImage(image: customProgressIndicator!)

Public method

If you need to update the thumbnails of the video, you can call this method manually. (By default it's called every time the view changes its bounds)

videoRangeSlider.updateThumbnails()

Author

Apps Boulevard

License

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

abvideorangeslider's People

Contributors

oscarjiv91 avatar thetrevorharmon avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.