github.com/kaiinui/Player

▶️ video player in Swift, simple way to play and stream media in your iOS or tvOS app



Documentation

Player

Player

Player is a simple iOS video player library written in Swift.

Features

  • plays local media or streams remote media over HTTP
  • customizable UI and user interaction
  • no size restrictions
  • orientation change support
  • simple API

If you're looking for a video player library written in Objective-C, checkout PBJVideoPlayer. For video recording, checkout PBJVision.

Build Status Pod Version

Installation

CocoaPods

Player is available and recommended for installation using the Cocoa dependency manager CocoaPods.

To integrate, add the following to your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :iOS, '8.0'
use_frameworks!

pod 'Player'

Carthage

Installation is also available using the dependency manager Carthage.

To integrate, add the following line to your Cartfile:

github "piemonte/Player" >= 0.1.0

Swift Package Manager

Installation can be done with the Swift Package Manager, add the following in your Package.swift :

import PackageDescription

let package = Package(
    name: "HelloWorld",
    dependencies: [
        .Package(url: "https://github.com/piemonte/Player.git", majorVersion: 0),
    ]
)

Manual

You can also simply copy the Player.swift file into your Xcode project.

Usage

The sample project provides an example of how to integrate Player, otherwise you can follow these steps.

Allocate and add the Player controller to your view hierarchy.

 self.player = Player()
 self.player.delegate = self
 self.player.view.frame = self.view.bounds

 self.addChildViewController(self.player)
 self.view.addSubview(self.player.view)
 self.player.didMoveToParentViewController(self)

Provide the file path to the resource you would like to play locally or stream. Ensure you're including the file extension.

let videoUrl: NSURL = // file or http url
self.player.setUrl(videoUrl)

play/pause/chill

 self.player.playFromBeginning()

Adjust the fill mode for the video, if needed.

 self.player.fillMode = “AVLayerVideoGravityResizeAspect”

Community

Resources

License

Player is available under the MIT license, see the LICENSE file for more information.