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

Skip to content

Commit 0e9e9e9

Browse files
authored
Release v0.6.0 (deepmedia#12)
1 parent 849ef27 commit 0e9e9e9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### v0.6.0
2+
3+
- New: ability to change video/audio speed and change each frame timestamp ([#10][10])
4+
- New: ability to set the video output rotation ([#8][8])
5+
- Improvement: new frame dropping algorithm, thanks to [@Saqrag][Saqrag] ([#9][9])
6+
- Improvement: avoid format validation on tracks coming from PassThroughTrackTranscoder, thanks to [@Saqrag][Saqrag] ([#11][11])
7+
18
### v0.5.0
29

310
- New: video cropping to any dimension. Encoder will crop the exceeding size. ([#6][6])
@@ -8,6 +15,11 @@
815
- Improvement: use [EglCore](https://github.com/natario1/EglCore) to replace GL logic. ([#5][5])
916
- Improvement: bug fixes and a new demo app to test transcoding options easily ([#4][4])
1017

18+
[Saqrag]: https://github.com/Saqrag
19+
1120
[4]: https://github.com/natario1/Transcoder/pull/4
1221
[5]: https://github.com/natario1/Transcoder/pull/5
1322
[6]: https://github.com/natario1/Transcoder/pull/6
23+
[8]: https://github.com/natario1/Transcoder/pull/8
24+
[9]: https://github.com/natario1/Transcoder/pull/9
25+
[10]: https://github.com/natario1/Transcoder/pull/10

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.5.0'
10+
implementation 'com.otaliastudios:transcoder:0.6.0'
1111
```
1212

1313
&#10240; <!-- Hack to add whitespace -->

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.5.0'
6+
version = '0.6.0'
77
group = 'com.otaliastudios'
88
archivesBaseName = 'transcoder'
99

0 commit comments

Comments
 (0)