voice
This commit is contained in:
parent
c16d98785a
commit
feeba64fb9
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue