Transcoder
Menu toggle
latest: v0.10.5 GitHub

New versions are released through GitHub, so the reference page is the GitHub Releases page.

Starting from 0.7.0, you can now support development through the GitHub Sponsors program. Companies can share a tiny part of their revenue and get private support hours in return. Thanks!

v0.10.5

  • Fix: Honor buffer.hasRemaining() and otherwise release the buffer. (#182)
  • Fix: Call progress even when not advenced. (#170)
  • Fix: FilePathDataSource crash before initialize. (#160)

https://github.com/natario1/Transcoder/compare/v0.10.4...v0.10.5

v0.10.4

  • Fix: fixed crash in specific conditions (#140)
  • New: AssetFileDescriptorDataSource, can be used to transcode from AssetFileDescriptors (#140)

https://github.com/natario1/Transcoder/compare/v0.10.3...v0.10.4

v0.10.3

  • Fix: error when merging many files, thanks to @DamonChen117 (#134)
  • Fix: more concatenation issues

https://github.com/natario1/Transcoder/compare/v0.10.2...v0.10.3

v0.10.2

  • Fix: error when merging many files (#132)

https://github.com/natario1/Transcoder/compare/v0.10.1...v0.10.2

v0.10.1

  • Fix: thumbnails upside down (#125)
  • Fix: clip/trim issues (#127)
  • Fix: seeking issues (#128)
  • Fix: concatenation failure (#130)

https://github.com/natario1/Transcoder/compare/v0.10.0...v0.10.1

v0.10.0

Transcoder is now distributed through Maven Central. Snapshot releases are available as well.

  • New: thumbnails support (#119)
  • Improvement: rewritten transcoding pipeline (#118)
  • Fix: many bugs fixed while rewriting the pipeline (#118)

https://github.com/natario1/Transcoder/compare/v0.9.1...v0.10.0

v0.9.1

  • Improvement: DefaultDataSink new constructor with support for FileDescriptor. (#87)

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 (#64)
  • Enhancement: you can now concatenate multiple files even if some of them have no audio, thanks to @mudar (#64)
  • Enhancement: you can now concatenate multiple files without audio track, thanks to @cbernier2 (#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 (#50)
  • New: ClipDataSource, just likes TrimDataSource but selects trim values with respect to video start (#54)

Transcoder will trim video segments only at the closest video sync frame. If your video has few sync frames, the trim timestamp might be different than what was selected.

https://github.com/natario1/Transcoder/compare/v0.7.4...v0.8.0

v0.7.4
  • Fix: fixed Xamarin incompatibility, thanks to @aweck (#41)
  • Fix: fixed small bugs with specific API versions / media files (#47)
  • Fix: fixed issues with specific media files, ensure consistent onProgress callback (#48)

https://github.com/natario1/Transcoder/compare/v0.7.3...v0.7.4

v0.7.3
  • Fix: fixed bug with files that do not have an audio track, thanks to @pawegio (#31)
  • Fix: fixed possible issues with FilePathDataSource (#32)

https://github.com/natario1/Transcoder/compare/v0.7.2...v0.7.3

v0.7.2
  • Improvement: better input format detection. Fixes bugs with certain files (#29)
  • Improvement: added DefaultAudioStrategy.Builder.bitRate() option (#29)

https://github.com/natario1/Transcoder/compare/v0.7.1...v0.7.2

v0.7.1
  • Improvement: update the underlying OpenGL library (#20)

https://github.com/natario1/Transcoder/compare/v0.7.0...v0.7.1

v0.7.0

  • New: video concatenation to stitch together multiple media (#14)
  • New: select a specific track type (VIDEO or AUDIO) for sources (#14)
  • New: audio resampling through DefaultAudioStrategy (#16)
  • New: custom resampling through TranscoderOptions.setAudioResampler() (#16)
  • Breaking change: TranscoderOptions.setDataSource() renamed to addDataSource() (#14)
  • Breaking change: TranscoderOptions.setRotation() renamed to setVideoRotation() (#14)
  • Breaking change: DefaultVideoStrategy.iFrameInterval() renamed to keyFrameInterval() (#14)
  • Breaking change: DefaultAudioStrategy now uses a builder - removed old constructor (#16)
  • Improvement: rotate videos through OpenGL instead of using metadata (#14)
  • Improvement: when concatenating multiple sources, automatically clip the longer track (audio or video) (#17)
  • Improvement: various bug fixed (#18)

https://github.com/natario1/Transcoder/compare/v0.6.0...v0.7.0

v0.6.0

  • New: ability to change video/audio speed and change each frame timestamp (#10)
  • New: ability to set the video output rotation (#8)
  • Improvement: new frame dropping algorithm, thanks to @Saqrag (#9)
  • Improvement: avoid format validation on tracks coming from PassThroughTrackTranscoder, thanks to @Saqrag ([#11][11])

https://github.com/natario1/Transcoder/compare/v0.5.0...v0.6.0

v0.5.0

  • New: video cropping to any dimension. Encoder will crop the exceeding size. (#6)
  • New: AspectRatioResizer to crop to a given aspect ratio. (#6)
  • Breaking change: MediaTranscoder renamed to Transcoder. (#6)
  • Breaking change: MediaTranscoderOptions renamed to TranscoderOptions. (#6)
  • Breaking change: MediaTranscoder.Listener renamed to TranscoderListener. (#6)
  • Improvement: use EglCore to replace GL logic. (#5)
  • Improvement: bug fixes and a new demo app to test transcoding options easily (#4)