Skip to content

Instantly share code, notes, and snippets.

@mpalet
Created May 15, 2019 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpalet/652127934cf2424689c8473cee71f76d to your computer and use it in GitHub Desktop.
Save mpalet/652127934cf2424689c8473cee71f76d to your computer and use it in GitHub Desktop.
get integrated loudness EBU R128 from file
#!/bin/bash
function intloudness {
ffmpeg -nostats -i $1 -filter_complex ebur128 -f null - 2>&1 | awk '/I:/' | tail -n1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment