This commit is contained in:
j 2026-01-30 14:28:33 +01:00
commit 8d0bb0a211
2 changed files with 4 additions and 4 deletions

View file

@ -270,9 +270,9 @@ def compose(clips, fragment, target=150, base=1024, voice_over=None, options=Non
print('%07.3f-%07.3f %07.3f' % (sub_offset, sub_offset+vo["duration"], vo["duration"]), vo["src"].split('/')[-1])
voice_overs.append(vo)
voc = vo.copy()
a, b = '-3', '-3'
a, b = '0', '0'
if options.get('stereo_downmix'):
a, b = '-1', '-1'
a, b = '0', '0'
voc['filter'] = {'volume': a}
scene['audio-center']['A1'].append(voc)
vo_low = vo.copy()

View file

@ -34,7 +34,7 @@ def render_music():
"src": src,
"duration": clip.sort.duration,
"filter": {
'volume': '-3',
'volume': '0',
},
})
@ -112,7 +112,7 @@ def render_forest():
"src": src,
"duration": clip.sort.duration,
"filter": {
'volume': '-3',
'volume': '0',
},
})