Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blommegard/HSPlayer

A very simple video player implementation for iOS, powered by AVFoundation
https://github.com/blommegard/HSPlayer

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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:
```objective-c
@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)