Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-16 01:35:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-16 01:35:30 +0300
commit0a853ec83c64764d3d14cc0bdface353420934aa (patch)
tree5f8d798b918eb49c7194904f97f0c9b893ccacc5 /io_sequencer_edl
parentd3f8d84aeb01dbb401a0684ae5750d0a45f60168 (diff)
Fix EDL not loading video with audio
thanks to Tintwotin
Diffstat (limited to 'io_sequencer_edl')
-rw-r--r--io_sequencer_edl/import_edl.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/io_sequencer_edl/import_edl.py b/io_sequencer_edl/import_edl.py
index 81347651..b1a767c1 100644
--- a/io_sequencer_edl/import_edl.py
+++ b/io_sequencer_edl/import_edl.py
@@ -172,7 +172,8 @@ def load_edl(scene, filename, reel_files, reel_offsets, global_offset):
path_full = reel_files[edit.reel]
path_dironly, path_fileonly = os.path.split(path_full)
- if edit.edit_type & parse_edl.EDIT_VIDEO: # and edit.transition_type == parse_edl.TRANSITION_CUT:
+ if edit.edit_type & (parse_edl.EDIT_VIDEO | parse_edl.EDIT_VIDEO_AUDIO):
+ # and edit.transition_type == parse_edl.TRANSITION_CUT:
# try:
strip = sequence_editor.sequences.new_movie(