Skip to content

Commit

Permalink
version 7.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Aug 25, 2024
1 parent 615f121 commit ac40c9e
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 5 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ Maksym Veremeyenko <verem@m1stereo.tv>
Brian Matherly <code@brianmatherly.com>
Janne Liljeblad <janne.liljeblad@gmail.com>
Steinar H. Gunderson <sgunderson@bigfoot.com>
Daniel F (gpstext, gpsgraphic)
mr.fantastic<mrfantastic@firemail.cc> (lv2, vst2)
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.14)

project(MLT
VERSION 7.25.0
VERSION 7.26.0
DESCRIPTION "Multimedia Framework"
HOMEPAGE_URL "https://www.mltframework.org"
LANGUAGES C CXX
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = MLT
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 7.24.0
PROJECT_NUMBER = 7.26.0

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
34 changes: 34 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
MLT Release Notes
-----------------

Version 7.26.0

Framework
* Fixed a double-free crash in `Mlt::Service::profile()`.

Modules
* Fixes and improvements to the `avformat` producer:
- Changed to prefer `r_frame_rate` over `avg_frame_rate`.
- Fixed `lowres` if set too high.
- Fixed `audio_index=all`.
- Fixed `variable_frame_rate` incorrectly set true on 59.94 fps in Matroska.
- Improved performance with intra-only video and reducing the frame rate.
- Fixed mono audio handling regression on FFmpeg 7.
- Fixed audio samples may be dropped unexpectly esp. with uncompressed.
* Fixed `movit` transitions with a non-movit filter on one of its inputs.
* Fixed duration in the `glaxnimate` producer off by one frame.
* Added `dropshadow` filter to the `qt` module.
* Fixed resetting animation in `kdenlivetitle` producer.
* Added support for LV2 and VST2 plugins in the `jackrack` module.
* Fixed crash using `av.declick` audio filter on FFmpeg 7.
* Added `subtitle` filter and producer and `subtitle_feed` filter to the `plus` module.
* Added subtitle encoding to the `avformat` consumer (new properties beginning with "subtitle.").
* Fixed `alang` in the the `avformat` consumer.
* Added `#gps_power` keyword to the `gpstext` filter.
* Fixed tab handling in the `kdenlivetitle` producer.

Other
* Added 8- and 10-bit encode presets for SVT-AV1.
* Fixed building on OpenBSD.
* Fixed building on musl libc.
* Fixed consumer properties not updating the automatic profile on the `melt` command line.
* Added `-loglevel` command line option to `melt`.


Version 7.24.0

Framework
Expand Down
2 changes: 1 addition & 1 deletion docs/melt.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.4.
.TH MELT "1" "April 2024" "melt 7.24.0" "User Commands"
.TH MELT "1" "August 2024" "melt 7.26.0" "User Commands"
.SH NAME
melt \- author, play, and encode multitrack audio/video compositions
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion src/framework/mlt_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define MLT_STRINGIZE(s) MLT_STRINGIZE2(s)

#define LIBMLT_VERSION_MAJOR 7
#define LIBMLT_VERSION_MINOR 25
#define LIBMLT_VERSION_MINOR 26
#define LIBMLT_VERSION_REVISION 0
#define LIBMLT_VERSION_INT \
((LIBMLT_VERSION_MAJOR << 16) + (LIBMLT_VERSION_MINOR << 8) + LIBMLT_VERSION_REVISION)
Expand Down
2 changes: 1 addition & 1 deletion src/swig/ruby/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def output(mlt_type, services, type_title)
end
else
puts "No metadata for #{name} #{type_title}"
end
end unless name.start_with?('lv2.', 'vst2.')
end
index.close
end
Expand Down

0 comments on commit ac40c9e

Please sign in to comment.