GStreamer plugins written in Rust. *These plugins can be used by applications written in other programming languages as well of course, they are just like any other GStreamer plugins available on the system.*
Go to file
Sebastian Dröge 666ec7d54d audiofx: Add audioloudnorm filter based on the ffmpeg af_loudnorm filter
This normalizes the loudness of an audio stream to a target loudness
with a given maximum peak based on EBU R128.

Conceptually it keeps a 3s lookahead for calculating the perceived
loudness and based on that calculates the gain required to reach the
target loudness. The calculated gains then go through a gaussian filter
for smoothening and are then applied to the audio in 100ms blocks. Each
of the 100ms blocks is then passed to a limiter filter to prevent going
above the maximum peak.

See http://k.ylo.ph/2016/04/04/loudnorm.html for some more details about
the algorithm.

It introduces 3s of latency and currently only works on 192kHz audio.
Using it with a different sample rate requires resampling before and
afterwards. The upsampling is required to calculate the true peak.

Other than the ffmpeg filter it currently does not support two-pass
processing but only one-pass/live processing.

Compared to the ffmpeg filter this code was refactored considerably and
the limiter implementation was fixed to actually work, as well as
various other bugs in different places that were fixed.
2020-04-01 23:55:48 +03:00
gst-plugin-audiofx audiofx: Add audioloudnorm filter based on the ffmpeg af_loudnorm filter 2020-04-01 23:55:48 +03:00
gst-plugin-cdg cdgdec: reset the interpreter when stopping 2020-01-10 10:49:44 +05:30
gst-plugin-claxon Fix some clippy warnings 2020-02-25 10:12:55 +02:00
gst-plugin-closedcaption Fix/silence some clippy warnings 2020-03-26 10:59:43 +02:00
gst-plugin-csound use the latest release of csound-rs bindings 2020-03-28 11:33:34 +00:00
gst-plugin-dav1d dav1d: Add dav1ddec element 2019-12-24 15:10:58 +01:00
gst-plugin-fallbackswitch Fix/silence various new clippy warnings 2020-03-19 12:55:29 +02:00
gst-plugin-file Fix compilation after gstreamer-rs!383 2019-12-18 08:17:42 +02:00
gst-plugin-flv Update various dependencies 2019-11-21 07:16:26 +00:00
gst-plugin-gif gif: Add initial implementation of a gif encoder 2020-02-25 08:45:22 +00:00
gst-plugin-lewton lewton: Don't copy decoded samples if no channel reordering is needed 2020-01-30 09:02:55 +00:00
gst-plugin-rav1e Fix/silence various new clippy warnings 2020-03-19 12:55:29 +02:00
gst-plugin-reqwest reqwest: Don't use deprecated Error::description() anymore 2020-03-19 13:24:10 +02:00
gst-plugin-rusoto Clippy pass 2019-12-19 20:44:00 +01:00
gst-plugin-sodium Fix various new clippy warnings from 1.40 2019-12-22 11:35:01 +02:00
gst-plugin-threadshare threadshare: fix GstClockTime formatting 2020-04-01 15:02:54 +02:00
gst-plugin-togglerecord Update for Seqnum/GroupId API changes 2020-01-25 01:21:22 +02:00
gst-plugin-tutorial tutorial: Update for Caps API changes 2020-03-07 00:56:35 +02:00
gst-plugin-version-helper Fall back to default unknown COMMIT_ID and BUILD_REL_DATE if unable to find commit in repo 2020-03-29 20:54:56 -04:00
.gitignore gif: Add initial implementation of a gif encoder 2020-02-25 08:45:22 +00:00
.gitlab-ci.yml Add csound-based filter plugin 2020-03-22 13:44:40 +02:00
Cargo.toml Add csound-based filter plugin 2020-03-22 13:44:40 +02:00
cargo_wrapper.py meson: add sodium option 2020-01-30 10:57:00 +00:00
LICENSE-APACHE Change license from LGPLv2.1+ to Apache2/MIT 2017-02-16 17:52:27 +02:00
LICENSE-LGPLv2 Add gst-plugin-togglerecord 2017-12-05 09:56:58 +02:00
LICENSE-MIT Change license from LGPLv2.1+ to Apache2/MIT 2017-02-16 17:52:27 +02:00
Makefile Clean up Makefile some more 2019-07-06 10:32:22 +03:00
meson.build Add csound-based filter plugin 2020-03-22 13:44:40 +02:00
meson_options.txt Add csound-based filter plugin 2020-03-22 13:44:40 +02:00
README.md Add csound-based filter plugin 2020-03-22 13:44:40 +02:00

gst-plugins-rs crates.io pipeline status

Repository containing various GStreamer plugins and elements written in the Rust programming language.

The plugins build upon the GStreamer Rust bindings. Check the README.md of that repository also for details about how to set-up your development environment.

LICENSE

gst-plugins-rs and all crates contained in here that are not listed below are licensed under either of

at your option.

gst-plugin-togglerecord is licensed under the Lesser General Public License (LICENSE-LGPLv2) version 2.1 or (at your option) any later version.

gst-plugin-csound is licensed under the Lesser General Public License (LICENSE-LGPLv2) version 2.1 or (at your option) any later version.

GStreamer itself is licensed under the Lesser General Public License version 2.1 or (at your option) any later version: https://www.gnu.org/licenses/lgpl-2.1.html

Contribution

Any kinds of contributions are welcome as a pull request.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in gst-plugins-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.