File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1- ### v0.7.0
1+ ### v0.7.1
2+
3+ - Improvement: update the underlying OpenGL library ([ #20 ] [ 20 ] )
4+
5+ ## v0.7.0
26
37- New: video concatenation to stitch together multiple media ([ #14 ] [ 14 ] )
48- New: select a specific track type (` VIDEO ` or ` AUDIO ` ) for sources ([ #14 ] [ 14 ] )
1418
1519https://github.com/natario1/Transcoder/compare/v0.6.0...v0.7.0
1620
17- ### v0.6.0
21+ ## v0.6.0
1822
1923- New: ability to change video/audio speed and change each frame timestamp ([ #10 ] [ 10 ] )
2024- New: ability to set the video output rotation ([ #8 ] [ 8 ] )
@@ -23,7 +27,7 @@ https://github.com/natario1/Transcoder/compare/v0.6.0...v0.7.0
2327
2428https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0
2529
26- ### v0.5.0
30+ ## v0.5.0
2731
2832- New: video cropping to any dimension. Encoder will crop the exceeding size. ([ #6 ] [ 6 ] )
2933- New: ` AspectRatioResizer ` to crop to a given aspect ratio. ([ #6 ] [ 6 ] )
@@ -45,3 +49,4 @@ https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0
4549[ 16 ] : https://github.com/natario1/Transcoder/pull/16
4650[ 17 ] : https://github.com/natario1/Transcoder/pull/17
4751[ 18 ] : https://github.com/natario1/Transcoder/pull/18
52+ [ 20 ] : https://github.com/natario1/Transcoder/pull/20
Original file line number Diff line number Diff line change 1515Transcodes and compresses video files into the MP4 format, with audio support, using hardware accelerated Android codecs available on the device. Works on API 18+.
1616
1717``` groovy
18- implementation 'com.otaliastudios:transcoder:0.7.0 '
18+ implementation 'com.otaliastudios:transcoder:0.7.1 '
1919```
2020
2121- Fast transcoding to AAC/AVC
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
33apply plugin : ' com.jfrog.bintray'
44
55// Required by bintray
6- version = ' 0.7.0 '
6+ version = ' 0.7.1 '
77group = ' com.otaliastudios'
88archivesBaseName = ' transcoder'
99
@@ -33,7 +33,7 @@ dependencies {
3333 androidTestImplementation ' androidx.test.ext:junit:1.1.1'
3434 androidTestImplementation ' org.mockito:mockito-android:2.28.2'
3535
36- api ' com.otaliastudios.opengl:egloo:0.2.1 '
36+ api ' com.otaliastudios.opengl:egloo:0.2.3 '
3737 api " androidx.annotation:annotation:1.1.0"
3838}
3939
@@ -105,7 +105,7 @@ bintray {
105105}
106106
107107task sourcesJar (type : Jar ) {
108- classifier = ' sources'
108+ archiveClassifier . set( ' sources' )
109109 from android. sourceSets. main. java. sourceFiles
110110}
111111
@@ -124,7 +124,7 @@ task javadoc(type: Javadoc) {
124124}
125125
126126task javadocJar (type : Jar , dependsOn : javadoc) {
127- classifier = ' javadoc'
127+ archiveClassifier . set( ' javadoc' )
128128 from javadoc. destinationDir
129129}
130130
You can’t perform that action at this time.
0 commit comments