2010-02-08 14:43:44 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-02-08 14:43:44 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
|
|
|
|
import bpy
|
|
|
|
|
2010-03-06 01:40:29 +00:00
|
|
|
|
2010-02-08 14:43:44 +00:00
|
|
|
class SequencerCrossfadeSounds(bpy.types.Operator):
|
|
|
|
'''Do crossfading volume animation of two selected sound strips.'''
|
|
|
|
|
|
|
|
bl_idname = "sequencer.crossfade_sounds"
|
|
|
|
bl_label = "Crossfade sounds"
|
2010-03-01 00:03:51 +00:00
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
2010-02-08 14:43:44 +00:00
|
|
|
|
|
|
|
def poll(self, context):
|
|
|
|
if context.scene and context.scene.sequence_editor and context.scene.sequence_editor.active_strip:
|
|
|
|
return context.scene.sequence_editor.active_strip.type == 'SOUND'
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
seq1 = None
|
|
|
|
seq2 = None
|
|
|
|
for s in context.scene.sequence_editor.sequences:
|
|
|
|
if s.selected and s.type == 'SOUND':
|
|
|
|
if seq1 == None:
|
|
|
|
seq1 = s
|
|
|
|
elif seq2 == None:
|
|
|
|
seq2 = s
|
|
|
|
else:
|
|
|
|
seq2 = None
|
|
|
|
break
|
|
|
|
if seq2 == None:
|
|
|
|
self.report({'ERROR'}, "Select 2 sound strips.")
|
|
|
|
return {'CANCELLED'}
|
2010-04-01 21:44:56 +00:00
|
|
|
if seq1.frame_final_start > seq2.frame_final_start:
|
2010-02-08 14:43:44 +00:00
|
|
|
s = seq1
|
|
|
|
seq1 = seq2
|
|
|
|
seq2 = s
|
2010-04-01 21:44:56 +00:00
|
|
|
if seq1.frame_final_end > seq2.frame_final_start:
|
|
|
|
tempcfra = context.scene.frame_current
|
|
|
|
context.scene.frame_current = seq2.frame_final_start
|
2010-02-08 14:43:44 +00:00
|
|
|
seq1.keyframe_insert('volume')
|
2010-04-01 21:44:56 +00:00
|
|
|
context.scene.frame_current = seq1.frame_final_end
|
2010-02-08 14:43:44 +00:00
|
|
|
seq1.volume = 0
|
|
|
|
seq1.keyframe_insert('volume')
|
|
|
|
seq2.keyframe_insert('volume')
|
2010-04-01 21:44:56 +00:00
|
|
|
context.scene.frame_current = seq2.frame_final_start
|
2010-02-08 14:43:44 +00:00
|
|
|
seq2.volume = 0
|
|
|
|
seq2.keyframe_insert('volume')
|
2010-04-01 21:44:56 +00:00
|
|
|
context.scene.frame_current = tempcfra
|
2010-02-08 14:43:44 +00:00
|
|
|
return {'FINISHED'}
|
|
|
|
else:
|
|
|
|
self.report({'ERROR'}, "The selected strips don't overlap.")
|
|
|
|
return {'CANCELLED'}
|
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
|
|
|
|
def register():
|
|
|
|
bpy.types.register(SequencerCrossfadeSounds)
|
|
|
|
|
2010-03-06 01:40:29 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def unregister():
|
|
|
|
bpy.types.unregister(SequencerCrossfadeSounds)
|
2010-02-08 14:43:44 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2010-02-16 09:55:07 +00:00
|
|
|
register()
|