Giter Site home page Giter Site logo

allmedev / gsplayer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wxxsw/gsplayer

0.0 1.0 0.0 117 KB

⏯ Video player, support for caching, preload, fullscreen transition and custom control view. 视频播放器,支持边下边播、预加载、全屏转场和自定义控制层

License: MIT License

Swift 98.91% Ruby 1.09%

gsplayer's Introduction

GSPlayer

Features

  • Fully customizable UI.
  • Easy to use API and callbacks.
  • Built-in caching mechanism to support playback while downloading (mp4).
  • Can preload multiple videos at any time.
  • Can be embedded into UITableView and UICollectionView.
  • Provide full screen transition.
  • Complete Demo.

Quick Start

  1. Add VideoPlayerView to the interface.
let playerView = VideoPlayerView()
view.addSubview(playerView)

// Or in IB, specify the type of custom View as VideoPlayerView.
  1. Play Video.
playerView.play(for: someURL)
  1. Pause/Resume Video.
if playerView.state == .playing {
    playerView.pause(reason: .userInteraction)
} else {
    playerView.resume()
}
  1. Update control UI based on playback status.
playerView.stateDidChanged = { state in
    switch state {
    case .none:
        print("none")
    case .error(let error):
        print("error - \(error.localizedDescription)")
    case .loading:
        print("loading")
    case .paused(let playing, let buffering):
        print("paused - progress \(Int(playing * 100))% buffering \(Int(buffering * 100))%")
    case .playing:
        print("playing")
    }
}

Documents

Cache

Get the total size of the video cache.

VideoCacheManager.calculateCachedSize()

Clean up all caches.

VideoCacheManager.cleanAllCache()

Preload

Set the video URL to be preloaded. Preloading will automatically cache a short segment of the beginning of the video and decide whether to start or pause the preload based on the buffering of the currently playing video.

VideoPreloadManager.shared.set(waiting: [URL])

Fullscreen

See demo.

PlayerView

Property

An object that manages a player's visual output.

public let playerLayer: AVPlayerLayer { get }

Get current video status.

public enum State {

    /// None
    case none

    /// From the first load to get the first frame of the video
    case loading

    /// Playing now
    case playing

    /// Pause, will be called repeatedly when the buffer progress changes
    case paused(playing: Double, buffering: Double)

    /// An error occurred and cannot continue playing
    case error(NSError)
}

public var state: State { get }

The reason the video was paused.

public enum PausedReason {

    /// Pause because the player is not visible, stateDidChanged is not called when the buffer progress changes
    case hidden

    /// Pause triggered by user interaction, default behavior
    case userInteraction

    /// Waiting for resource completion buffering
    case waitingKeepUp
}

public var pausedReason: PausedReason { get }

Number of replays.

public var replayCount: Int { get }

Played progress, value range 0-1.

public var playing: Double { get }

Played length in seconds.

public var currentDuration: Double { get }

Buffered progress, value range 0-1.

public var buffering: Double { get }

Buffered length in seconds.

public var currentBufferDuration: Double { get }

Total video duration in seconds.

public var totalDuration: Double { get }

The total watch time of this video, in seconds.

public var watchDuration: Double { get }

Whether the video is muted, only for this instance.

public var isMuted: Bool { get set }

Video volume, only for this instance.

public var volume: Double { get set }

Callback

Playback status changes, such as from play to pause.

public var stateDidChanged: ((State) -> Void)?

Replay after playing to the end.

public var replay: (() -> Void)?

Method

Play a video of the specified url.

func play(for url: URL)

Pause video.

func pause(reason: PausedReason)

Continue playing video.

func resume()

Installation

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

pod 'GSPlayer'

Contribution

Issue

If you find a bug or need a help, you can create a issue

Pull Request

We are happy to accept pull requests :D. But please make sure it's needed by most developers and make it simple to use. If you are not sure, create an issue and we can discuss it before you get to coding.

License

The MIT License (MIT)

gsplayer's People

Contributors

wxxsw avatar zh-se avatar

Watchers

 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.