From 0a853ec83c64764d3d14cc0bdface353420934aa Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 15 Nov 2014 23:35:30 +0100 Subject: Fix EDL not loading video with audio thanks to Tintwotin --- io_sequencer_edl/import_edl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'io_sequencer_edl') 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( -- cgit v1.2.3