`ebur128=video=1’, and `ebur128=video=1:peak=sample’

Watch on youtube.com

video=1 (left side of uploaded video)

#! /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]ebur128=size=1920x1080:video=1[v][a]
" -map '[v]' -map '[a]' \
  "${pref}_${ifnb}.mp4"

video=1:peak=sample (right side of uploaded video)

#! /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]ebur128=size=1920x1080:video=1:peak=sample[v][a]
" -map '[v]' -map '[a]' \
  "${pref}_${ifnb}.mp4"