Skip to content

Commit f9b1326

Browse files
author
limin
committed
升级版本
1 parent 20c6143 commit f9b1326

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ With it, you can encode a video at any resolution, no longer need to care about
77
![ScreenRecord_1](https://github.com/lmylr/HardwareVideoCodec/blob/master/images/ScreenRecord_1.gif)
88
![ScreenRecord_1](https://github.com/lmylr/HardwareVideoCodec/blob/master/images/ScreenRecord_2.gif)
99
## Latest release
10-
[V1.7.0](https://github.com/lmylr/HardwareVideoCodec/releases/tag/v1.7.0)
10+
[V1.7.1](https://github.com/lmylr/HardwareVideoCodec/releases/tag/v1.7.1)
1111

12-
* Support picture filter. You can process picture now.
13-
* Support filter group. You can combine any filters now.
14-
* Support watermark. Add a logo to your video.
15-
* Fix some memory leaks and bugs.
12+
* Fix after switched the filter, the video of some devices will become black.
1613

1714
## Features
1815
* Support video encoding at any resolution. No need to care about camera resolution.
@@ -28,7 +25,7 @@ With it, you can encode a video at any resolution, no longer need to care about
2825

2926
## Start
3027
If you are building with Gradle, simply add the following code to your project:
31-
* Project root build.gradle
28+
* You need to configure your kotlin environment. Project root build.gradle
3229
```
3330
buildscript {
3431
ext.kotlin_version = '1.2.30'//Latest kotlin version
@@ -46,8 +43,8 @@ allprojects {
4643
* Module build.gradle
4744
```
4845
dependencies {
49-
implementation 'com.lmy.codec:hardwarevideocodec:1.7.0'
50-
implementation 'com.lmy.codec:rtmp:1.7.0'//If you want to use RTMP stream.
46+
implementation 'com.lmy.codec:hardwarevideocodec:1.7.1'
47+
implementation 'com.lmy.codec:rtmp:1.7.1'//If you want to use RTMP stream.
5148
}
5249
```
5350
* For record mp4

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies {
3636
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
3737
implementation 'com.tencent.bugly:crashreport:latest.release'
3838
implementation 'com.tencent.bugly:nativecrashreport:latest.release'
39-
// implementation 'com.lmy.codec:hardwarevideocodec:1.7.0'
40-
// implementation 'com.lmy.codec:rtmp:1.7.0'
39+
// implementation 'com.lmy.codec:hardwarevideocodec:1.7.1'
40+
// implementation 'com.lmy.codec:rtmp:1.7.1'
4141
implementation project(':codec')
4242
implementation project(':rtmp')
4343
}

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
buildscript {
44
ext.kotlin_version = '1.2.30'
5-
ext.versionCode = 16
6-
ext.versionName = "1.7.0"
5+
ext.versionCode = 17
6+
ext.versionName = "1.7.1"
77
repositories {
88
google()
99
jcenter()

0 commit comments

Comments
 (0)