FFmpeg
Variables
normalize Namespace Reference

Variables

 ifile = sys.argv[1]
 
 encopt = sys.argv[2:-1]
 
 ofile = sys.argv[-1]
 
string analysis_cmd = 'ffprobe -v error -of compact=p=0:nk=1 '
 
 probe_out = subprocess.check_output(analysis_cmd, shell=True)
 
int loudness = -23
 
 sline = line.rstrip()
 
 adjust = ref - float(loudness)
 
list norm_cmd = ['ffmpeg', '-i', ifile, '-af', 'volume=%fdB' % adjust]
 

Variable Documentation

◆ ifile

normalize.ifile = sys.argv[1]

◆ encopt

normalize.encopt = sys.argv[2:-1]

Definition at line 7 of file normalize.py.

◆ ofile

normalize.ofile = sys.argv[-1]

Definition at line 8 of file normalize.py.

Referenced by copy_chapters().

◆ analysis_cmd

string normalize.analysis_cmd = 'ffprobe -v error -of compact=p=0:nk=1 '

Definition at line 13 of file normalize.py.

◆ probe_out

normalize.probe_out = subprocess.check_output(analysis_cmd, shell=True)

Definition at line 17 of file normalize.py.

◆ loudness

normalize.loudness = -23

Definition at line 20 of file normalize.py.

Referenced by ff_sbc_calculate_bits(), gate_update(), and get_histogram().

◆ sline

normalize.sline = line.rstrip()

Definition at line 22 of file normalize.py.

◆ adjust

normalize.adjust = ref - float(loudness)

◆ norm_cmd

list normalize.norm_cmd = ['ffmpeg', '-i', ifile, '-af', 'volume=%fdB' % adjust]

Definition at line 30 of file normalize.py.