Releases: instructure/ruby-ffmpeg
Releases · instructure/ruby-ffmpeg
7.0.0-beta.1
Fixes:
- Some incorrect or incomplete documentation comments.
Improvements:
- Added non-blocking popen3 methods for both ffmpeg and ffprobe.
- Improved IO handling for ffmpeg and ffprobe processes.
Breaking Changes:
- Dropped support for Ruby 3.1, Ruby 3.2 is now the minimum supported version.
7.0.0-beta
Breaking Changes:
- Added new, more powerful (though less extensible) DSL to build ffmpeg commands.
- Introduced new concept of long-lived presets and transcoders.
- Removed full output storage during the transcoding process.
- Added built-in presets that can be used out-of-the-box:
- H.264 360p all the way up to 4K resolution.
- AAC 128k all the way up to 320k bit rate.
- DASH H.264 360p all the way up to 4K resolution.
- DASH AAC 128k all the way up to 320k bit rate.
- Dropped support for Ruby 3.0, Ruby 3.1 is now the minimum supported version.
6.1.2
6.1.1
Fixes:
- MOV files processed in iMovie should not be marked as audio with attached picture
6.1.0
Improvements:
- Added new
default?
andattached_pic?
helper methods to FFMPEG::Stream objects - Added new
audio_with_attached_pic?
helper method to FFMPEG::Media objects
6.0.3
Fixes:
- Fixed a possible race condition that would cause the transcoder to time out even if the transcoder was still running
6.0.2
Fixes:
- Fixed a crash where extremely long media files would cause the transcoder to fail with SystemStackError: stack level too deep
6.0.1
Fixes:
- Fixed crashes when using FFMPEG::IO with non-UTF-8 encoding (e.g.: when ffprobe or ffmpeg output contains non-UTF-8 byte sequences)
6.0.0
Breaking Changes:
- Changed
FFMPEG::IO
to useUTF-8
encoding instead ofISO-8859-1
by default - Changed
FFMPEG::Transcoder#run
to raiseFFMPEG::Error
if FFMPEG exits with non-zero exit code even ifvalidate
was set tofalse
on the transcoder - Removed the
errors
attribute ofFFMPEG::Transcoder
Improvements:
- Changed
FFMPEG::IO
to handle carriage returns by FFMPEG – progress reports will be more frequent and more reliable - Changed
FFMPEG::Transcoder
to report progress only on whole percentages by default (e.g.:0.01
,0.2
etc.) - Added new
progress_digits
kwarg toFFMPEG::Transcoder
to allow more frequent progress updates
5.0.0
v5.0.0 chore!: drop support for Ruby 2.x