This commit is contained in:
j 2017-05-22 20:40:24 +02:00
parent c16d98785a
commit feeba64fb9
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,10 @@ def add_clip(playlist, clip, in_, duration):
volume = mlt.Filter(profile, "volume")
if clip.get('tag', '') == 'gong':
volume.set("gain", '0.8')
# Vocal Cords in Action
elif clip.get('id', '').split('/')[0] in ('EBB', 'ECE', 'ECK', 'ECJ') and \
clip.get('tag', '') in ('vagina', 'voice'):
volume.set("gain", '0.4')
else:
volume.set("gain", '0.12')
tractor.plant_filter(volume)