Bluezen / HSPlayer

A very simple video player implementation for iOS, powered by AVFoundation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HSPlayer

This is a simple video player built using AVFoundation with a deoplyment target of 4.0 Built just for fun and as a good reference of a clean player implementation.

Interface:

@property (nonatomic, strong, readonly) AVPlayer *player;

// Start player by setting the URL
@property (nonatomic, copy) NSURL *URL;

@property (nonatomic, assign) BOOL playing;

@property (nonatomic, assign) BOOL controlsVisible;
- (void)setControlsVisible:(BOOL)controlsVisible animated:(BOOL)animated;

// Hides statusBar if true, defaults to YES
@property (nonatomic, assign) BOOL fullScreen;

License

HSPlayer is released under the MIT-license (see the LICENSE file)

About

A very simple video player implementation for iOS, powered by AVFoundation

License:MIT License


Languages

Language:Objective-C 100.0%