CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2016 |
Maintained by Ribs.
Some of the advance features are:
To run the example project, clone the repo, and run pod install
from the Example directory first.
iOS 7.0 or later
RBPlayer is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "RBPlayer", "~> 0.1.5"
RBPlayerViewController *viewController = [[RBPlayerViewController alloc] init];
[viewController.player playWithURL:[NSURL URLWithString:@"http://xxx.xxx/xx.mp4"]];
[self presentViewController:viewController animated:YES completion:nil];
RBPlayerItem *item = [[RBPlayerItem alloc] init];
item.title = @"这都是什么jb电影";
item.assetTitle = @"清晰";
RBPlayerItemAsset *itemAsset1 = [[RBPlayerItemAsset alloc] initWithType:@"清晰" URL:[NSURL URLWithString:url]];
RBPlayerItemAsset *itemAsset2 = [[RBPlayerItemAsset alloc] initWithType: @"高清" URL:[NSURL URLWithString:url]];
item.assets = @[itemAsset1, itemAsset2];
[self.player replaceCurrentItemWithPlayerItem:item];
[self.player playWithItemAsset:itemAsset1];
self.player = [[RBVideoPlayer alloc] init];
[self.view addSubview:self.player.view];
self.player.view.translatesAutoresizingMaskIntoConstraints = NO;
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-20-[playerView]-50-|" options:0 metrics:nil views:@{@"playerView":self.player.view}]];
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-50-[playerView(200)]" options:0 metrics:nil views:@{@"playerView":self.player.view}]];
Ribs, [email protected]
RBPlayer is available under the MIT license. See the LICENSE file for more info.