center filter

This commit is contained in:
j 2023-11-08 00:10:28 +01:00
parent 60f66b1cb4
commit ca5ee40ca9

View file

@ -105,8 +105,9 @@ def compose(clips, target=150, base=1024, voice_over=None):
}) })
vo_min += offset vo_min += offset
for vo in voice_overs: for vo in voice_overs:
vo_low['filter'] = {'volume': '3'} voc = vo.copy()
scene['audio-center']['A1'].append(vo) voc['filter'] = {'volume': '3'}
scene['audio-center']['A1'].append(voc)
vo_low = vo.copy() vo_low = vo.copy()
vo_low['filter'] = {'volume': '-6'} vo_low['filter'] = {'volume': '-6'}
scene['audio-rear']['A1'].append(vo_low) scene['audio-rear']['A1'].append(vo_low)