This commit is contained in:
j 2017-05-21 11:55:53 +00:00
parent 55c55d8498
commit dad497a824
2 changed files with 4 additions and 1 deletions

View File

@ -73,6 +73,9 @@ def encode(xml, force=False):
'ac=1'
]
subprocess.call(cmd)
#for wav in (left, right, vocals):
# cmd = ['normalize-audio', wav]
# subprocess.call(cmd)
cmd = [
'ffmpeg', '-y',
'-i', left, # FL

View File

@ -229,7 +229,7 @@ output_tracks.connect(overlay, 1)
norm = mlt.Filter(profile, "volume")
#norm.set("gain", "-6dB")
norm.set("gain", "3dB")
norm.set("gain", "6dB")
output.plant_filter(norm)
composite = mlt.Transition(profile, "composite")