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

Skip to content

Release v0.9.0 #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2020
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, u
Android codecs available on the device. Works on API 18+.

```groovy
implementation 'com.otaliastudios:transcoder:0.8.0'
implementation 'com.otaliastudios:transcoder:0.9.0'
```

- Fast transcoding to AAC/AVC
Expand Down
11 changes: 11 additions & 0 deletions docs/_about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ New versions are released through GitHub, so the reference page is the [GitHub R
> Starting from 0.7.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program.
Companies can share a tiny part of their revenue and get private support hours in return. Thanks!

### v0.9.0

- New: `BlankAudioDataSource` can be used to add muted audio to a video-only track, thanks to [@mudar][mudar] ([#64][64])
- Enhancement: you can now concatenate multiple files even if some of them have no audio, thanks to [@mudar][mudar] ([#64][64])
- Enhancement: you can now concatenate multiple files without audio track, thanks to [@cbernier2][cbernier2] ([#61][61])

<https://github.com/natario1/Transcoder/compare/v0.8.0...v0.9.0>

### v0.8.0

- New: `TrimDataSource` to trim segments. Use it to wrap your original source. Thanks to [@mudar][mudar] ([#50][50])
Expand Down Expand Up @@ -86,6 +94,7 @@ frames, the trim timestamp might be different than what was selected.
[pawegio]: https://github.com/pawegio
[aweck]: https://github.com/aweck
[mudar]: https://github.com/mudar
[cbernier2]: https://github.com/cbernier2

[4]: https://github.com/natario1/Transcoder/pull/4
[5]: https://github.com/natario1/Transcoder/pull/5
Expand All @@ -106,3 +115,5 @@ frames, the trim timestamp might be different than what was selected.
[48]: https://github.com/natario1/Transcoder/pull/48
[50]: https://github.com/natario1/Transcoder/pull/50
[54]: https://github.com/natario1/Transcoder/pull/54
[61]: https://github.com/natario1/Transcoder/pull/61
[64]: https://github.com/natario1/Transcoder/pull/64
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-2'
google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4'
github: [metadata] # TODO What's this?
github_repo: Transcoder
github_version: 0.8.0
github_version: 0.9.0
github_branch: master
baseurl: '/Transcoder' # Keep as an empty string if served up at the root
collections:
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.8.0'
version = '0.9.0'
group = 'com.otaliastudios'
archivesBaseName = 'transcoder'

Expand Down