Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down