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

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.9.0'
implementation 'com.otaliastudios:transcoder:0.9.1'
```

- Fast transcoding to AAC/AVC
Expand Down
6 changes: 6 additions & 0 deletions docs/_about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ 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.1

- Improvement: `DefaultDataSink` new constructor with support for FileDescriptor. ([#87][87])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR 87 should be added as a link at the bottom of this file, other than this looks great!


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

### v0.9.0

- New: `BlankAudioDataSource` can be used to add muted audio to a video-only track, thanks to [@mudar][mudar] ([#64][64])
Expand Down
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.9.0
github_version: 0.9.1
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.9.0'
version = '0.9.1'
group = 'com.otaliastudios'
archivesBaseName = 'transcoder'

Expand Down