Skip to content

Commit

Permalink
release v2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Doikki committed Apr 19, 2018
1 parent 04d6b7d commit 4de6bed
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ A video player based on [IjkPlayer](https://github.com/Bilibili/ijkplayer).
* **支持连续播放一个列表的视频。**
* **支持广告播放。**
* **支持清晰度切换。**
* **支持保存播放进度。**
* **支持弹幕,使用了[DanmakuFlameMaster](https://github.com/Bilibili/DanmakuFlameMaster)**
* **抖音demo。**

Expand All @@ -41,14 +42,14 @@ allprojects {
dependencies {
# required, enough for most devices.
implementation 'com.github.dueeeke.dkplayer:dkplayer-java:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv7a:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-java:2.3.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv7a:2.3.3'
# Other ABIs: optional
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv5:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-arm64:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86_64:2.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv5:2.3.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-arm64:2.3.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86:2.3.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86_64:2.3.3'
}
```
或者将library下载并导入项目中使用
Expand Down Expand Up @@ -76,6 +77,7 @@ PlayerConfig playerConfig = new PlayerConfig.Builder()
.enableMediaCodec()//启动硬解码,启用后可能导致视频黑屏,音画不同步
.usingAndroidMediaPlayer()//启动AndroidMediaPlayer,不调用此方法默认使用IjkPlayer
.usingSurfaceView() //启用SurfaceView显示视频,不调用默认使用TextureView
.savingProgress() //保存播放进度
.build();
ijkVideoView.setPlayerConfig(playerConfig);
```
Expand Down Expand Up @@ -129,7 +131,8 @@ ijkVideoView.setPlayerConfig(playerConfig);
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/6.png" width="240px" height="426px"/>
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/7.png" width="240px" height="426px"/>
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/8.png" width="240px" height="426px"/>
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/9.png" width="426px" height="240px"/>
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/9.png" width="240px" height="426px"/>
<img src="https://github.com/dueeeke/dkplayer/blob/master/art/10.png" width="426px" height="240px"/>
</div>

## 混淆
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.dueeeke.dkplayer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 17
versionName "2.3"
versionCode 18
versionName "2.3.3"
}


Expand Down
Binary file added art/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified art/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified art/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified art/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4de6bed

Please sign in to comment.