`aphasemeter’

Watch on youtube.com
doc

https://ffmpeg.org/ffmpeg-filters.html#aphasemeter

#! /bin/sh
ifn="Air on the G String (from Orchestral Suite no. 3, BWV 1068).mp3"
ifnb="`basename \"${ifn}\" .mp3`"
pref="`basename $0 .sh`"

#
ffmpeg -y -i "${ifn}" -filter_complex "
[0:a]aphasemeter=s=1920x1080:video=1[a][v]
" -map '[v]' -map '[a]' \
  "${pref}_${ifnb}.mp4"