volume tweaks

This commit is contained in:
j 2023-11-14 11:12:18 +01:00
commit 8e9236a176
2 changed files with 9 additions and 6 deletions

View file

@ -112,9 +112,13 @@ def compose(clips, target=150, base=1024, voice_over=None):
voc = vo.copy()
a, b = '3', '-6'
if 'Whispered' in voc['src']:
a, b = '4', '-5'
elif 'Read' in voc['src']:
a, b = '6', '-3'
elif 'Read' in voc['src']:
a, b = '7', '-2'
elif 'Free' in voc['src']:
a, b = '5', '-4'
elif 'Ashley' in voc['src']:
a, b = '5', '-4'
voc['filter'] = {'volume': a}
scene['audio-center']['A1'].append(voc)
vo_low = vo.copy()