Skip to content

Commit

Permalink
Update lib
Browse files Browse the repository at this point in the history
  • Loading branch information
0dayZh committed Oct 26, 2015
1 parent dec5a9c commit 27bb2af
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Pod/Library/include/PLPlayerKit/PLPlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// PLPlayer.h
// PLPlayerKit
//
// Created by 0dayZh on 15/10/15.
// Copyright © 2015年 qgenius. All rights reserved.
// Created on 15/10/15.
// Copyright © 2015年 Pili Engineering. All rights reserved.
//

#import <Foundation/Foundation.h>
Expand Down
Binary file modified Pod/Library/lib/libPLPlayerKit.a
Binary file not shown.
Binary file modified Pod/Library/lib/libcommon.a
Binary file not shown.
Binary file modified Pod/Library/lib/libdecoder.a
Binary file not shown.
26 changes: 19 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PLPlayerKit 是一个适用于 iOS 的音视频播放器 SDK,可高度定制

- [x] RTMP 直播流播放
- [x] HLS 播放
- [x] 高可定制
- [x] 轻量简单
- [x] 音频后台播放
- [x] 无 ffmpeg 依赖

Expand All @@ -15,7 +15,9 @@ PLPlayerKit 是一个适用于 iOS 的音视频播放器 SDK,可高度定制
- [快速开始](#1-快速开始)
- [配置工程](#配置工程)
- [示例代码](#示例代码)
- [关于 2.0 版本](#关于2.0版本)
- [系统要求](#系统要求)
- [关于 v2.0.0 版本](#关于v2.0.0版本)
- [对 1.x 版本兼容性说明](#对1.x版本兼容性说明)
- [版本历史](#版本历史)

## 快速开始
Expand All @@ -42,6 +44,9 @@ pod install

### 示例代码

所有你需要知道的方法一目了然


在需要的地方添加

```Objective-C
Expand Down Expand Up @@ -70,13 +75,13 @@ __weak typeof(self) wself = self;
[strongSelf.view addSubview:playerView];
}
}];
// 播放
// 播放, 必须在 - (void)prepareToPlayWithCompletion: 方法调用且回调执行完后调用才有效
[self.player play];
// 暂停
[self.player pause];
// 停止
[self.player stop];
```
Expand All @@ -94,8 +99,15 @@ __weak typeof(self) wself = self;
// 当发生错误时,会回调这个方法
}
```
##系统要求

系统版本要求

- 不低于 iOS 7

## 关于 2.0.0 版本

## 关于 2.0 版本
### 对 1.x 版本兼容性说明

从 2.0 版本开始,API 整体更新,不再向下兼容,弃用了 KxMovie 及 ffmpeg 依赖库。
如果你需要 2.0 以下的版本,可以根据后面的版本历史找寻你需要的版本在 Podfile 中指定安装。
Expand Down

0 comments on commit 27bb2af

Please sign in to comment.