diff --git a/CHANGELOG.md b/CHANGELOG.md index e4d14a3c..4b524863 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ +### v0.7.2 + +- Improvement: better input format detection. Fixes bugs with certain files ([#29][29]) +- Improvement: added `DefaultAudioStrategy.Builder.bitRate()` option ([#29][29]) + +https://github.com/natario1/Transcoder/compare/v0.7.1...v0.7.2 + ### v0.7.1 - Improvement: update the underlying OpenGL library ([#20][20]) +https://github.com/natario1/Transcoder/compare/v0.7.0...v0.7.1 + ## v0.7.0 - New: video concatenation to stitch together multiple media ([#14][14]) @@ -50,3 +59,4 @@ https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0 [17]: https://github.com/natario1/Transcoder/pull/17 [18]: https://github.com/natario1/Transcoder/pull/18 [20]: https://github.com/natario1/Transcoder/pull/20 +[29]: https://github.com/natario1/Transcoder/pull/29 diff --git a/README.md b/README.md index 2c6d46c2..39fc785f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, using hardware accelerated Android codecs available on the device. Works on API 18+. ```groovy -implementation 'com.otaliastudios:transcoder:0.7.1' +implementation 'com.otaliastudios:transcoder:0.7.2' ``` - Fast transcoding to AAC/AVC diff --git a/lib/build.gradle b/lib/build.gradle index 12d1ea89..018b4745 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // Required by bintray -version = '0.7.1' +version = '0.7.2' group = 'com.otaliastudios' archivesBaseName = 'transcoder'