Skip to content

Commit 578c908

Browse files
authored
Release v0.7.0 (#19)
1 parent e37040a commit 578c908

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
### v0.7.0 (to be released)
1+
### v0.7.0
22

33
- New: video concatenation to stitch together multiple media ([#14][14])
44
- New: select a specific track type (`VIDEO` or `AUDIO`) for sources ([#14][14])
5+
- New: audio resampling through `DefaultAudioStrategy` ([#16][16])
6+
- New: custom resampling through `TranscoderOptions.setAudioResampler()` ([#16][16])
57
- Breaking change: `TranscoderOptions.setDataSource()` renamed to `addDataSource()` ([#14][14])
68
- Breaking change: `TranscoderOptions.setRotation()` renamed to `setVideoRotation()` ([#14][14])
79
- Breaking change: `DefaultVideoStrategy.iFrameInterval()` renamed to `keyFrameInterval()` ([#14][14])
10+
- Breaking change: `DefaultAudioStrategy` now uses a builder - removed old constructor ([#16][16])
811
- Improvement: rotate videos through OpenGL instead of using metadata ([#14][14])
12+
- Improvement: when concatenating multiple sources, automatically clip the longer track (audio or video) ([#17][17])
13+
- Improvement: various bug fixed ([#18][18])
14+
15+
https://github.com/natario1/Transcoder/compare/v0.6.0...v0.7.0
916

1017
### v0.6.0
1118

@@ -14,6 +21,8 @@
1421
- Improvement: new frame dropping algorithm, thanks to [@Saqrag][Saqrag] ([#9][9])
1522
- Improvement: avoid format validation on tracks coming from PassThroughTrackTranscoder, thanks to [@Saqrag][Saqrag] ([#11][11])
1623

24+
https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0
25+
1726
### v0.5.0
1827

1928
- New: video cropping to any dimension. Encoder will crop the exceeding size. ([#6][6])
@@ -33,3 +42,6 @@
3342
[9]: https://github.com/natario1/Transcoder/pull/9
3443
[10]: https://github.com/natario1/Transcoder/pull/10
3544
[14]: https://github.com/natario1/Transcoder/pull/14
45+
[16]: https://github.com/natario1/Transcoder/pull/16
46+
[17]: https://github.com/natario1/Transcoder/pull/17
47+
[18]: https://github.com/natario1/Transcoder/pull/18

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.6.0'
10+
implementation 'com.otaliastudios:transcoder:0.7.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.6.0'
6+
version = '0.7.0'
77
group = 'com.otaliastudios'
88
archivesBaseName = 'transcoder'
99

0 commit comments

Comments
 (0)