Last active
May 11, 2020 17:40
-
-
Save nickferrando/8c19b04fc3dffd0c78e8054404915d7c to your computer and use it in GitHub Desktop.
FFMPEG-Normalize - Parameters for Loudness Normalization for Google Assistant (Standard EBU R128)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#This FFMPEG-Normalize command produce a standard volume normalization, as per Google technical specifications: | |
#(https://developers.google.com/assistant/tools/audio-loudness). | |
#Please note that you need to install FFMPEG before installing FFMPEG-Normalize. | |
ffmpeg-normalize [INPUT] -nt ebu -t "-16" -lrt "11" -tp "-1.5" --offset "-0.5" -ar 192000 -v -o [OUTPUT] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment