<div dir="ltr"><div>ideasman42 suggested that I posted here about this: </div><div><br></div><div><u>Background:</u></div>I&#39;m using the EDL notes from the Blender import_edl.py script in order to code a python script to convert <a href="http://ShotCut.org">ShotCut.org</a> MLT files into Blender friendly EDLs: <div><br></div><div>The Blender EDL notes:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">* &lt;EditMode&gt;: &#39;V&#39; | &#39;A&#39; | &#39;VA&#39; | &#39;B&#39; | &#39;v&#39; | &#39;a&#39; | &#39;va&#39; | &#39;b&#39; which equals Video, Audio, Video_Audio edits (note B or b can be used in place of VA or va).</blockquote><div><br></div><u>Bug?</u><br>That&#39;s how I noticed that when VA/va/B/b settings (which equals Video+Audio) are used, only an audio clip is added to the time line, and no video. With va I suppose that both a video and an audio clip should be inserted?</div><div><br></div><div><u>How to reproduce:</u></div><div>Open this EDL example, and assign a video clip with audio. It must be longer than 30 sec.<br></div><div><br></div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">* EDL example:<br>1 test <b>va</b> C 00:00:00:00 00:00:30:00 00:00:00:00 00:00:30:00</blockquote><div><br></div><div><u>How to fix:</u> </div></div><div>When the VA/va/B/b settings are used, adding a video clip too, can be done very simple with the stuff I added in bold here in line 173:</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Code:<br>if edit.edit_type &amp; <b>(</b>parse_edl.EDIT_VIDEO<b> | parse_edl.EDIT_VIDEO_AUDIO)</b>:</blockquote><div><br>This way a video clip is added too, when va/b setting is used.<br></div><div><br></div><div><u>Is it a bug or expected behavior?</u></div><div>So the question is if using the va/b setting should add both a video clip and an audio clip, or is the current behavior what is to be expected?</div></div>