Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 76001f2

Browse files
authored
Bump version to v0.5.0 (deepmedia#7)
1 parent 7e90310 commit 76001f2

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### v0.5.0
2+
3+
- New: video cropping to any dimension. Encoder will crop the exceeding size. ([#6][6])
4+
- New: `AspectRatioResizer` to crop to a given aspect ratio. ([#6][6])
5+
- Breaking change: `MediaTranscoder` renamed to `Transcoder`. ([#6][6])
6+
- Breaking change: `MediaTranscoderOptions` renamed to `TranscoderOptions`. ([#6][6])
7+
- Breaking change: `MediaTranscoder.Listener` renamed to `TranscoderListener`. ([#6][6])
8+
- Improvement: use [EglCore](https://github.com/natario1/EglCore) to replace GL logic. ([#5][5])
9+
- Improvement: bug fixes and a new demo app to test transcoding options easily ([#4][4])
10+
11+
[4]: https://github.com/natario1/Transcoder/pull/4
12+
[5]: https://github.com/natario1/Transcoder/pull/5
13+
[6]: https://github.com/natario1/Transcoder/pull/6

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
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+.
88

99
```groovy
10-
implementation 'com.otaliastudios:transcoder:0.4.0'
10+
implementation 'com.otaliastudios:transcoder:0.5.0'
1111
```
1212

1313
Using Transcoder in the most basic form is pretty simple:

‎lib/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

55
// Required by bintray
6-
version = '0.4.0'
6+
version = '0.5.0'
77
group = 'com.otaliastudios'
88
archivesBaseName = 'transcoder'
99

0 commit comments

Comments
 (0)