Sequencer Python API - can't do movie strips
Posted: Tue Aug 26, 2008 7:48 pm
I was working on a Python script today and attempting to add a MOVIE strip to the sequence. Here is my (simplified) script:
The COLOR strip works fine, but the MOVIE strip inserts a weird bogus strip that crashes Blender as soon as you try to do anything with it. I looked through the Python sequencer API source code and it looks like the section that deals with movies is simply not coded. My guess is that this part of the API has been used mostly for image sequences.
Anyway, my questions are:
Code: Select all
from Blender import *
def main():
scn = Scene.GetCurrent()
seq = scn.sequence
# COLOR strip -- works!
start = 50
track = 2
seq_data = ( 0.5, 0.0, 0.0 )
strip = seq.new( seq_data, start, track)
# MOVIE strip ...
start = 50
track = 3
seq_data = "s:/test.avs"
strip = seq.new( seq_data, start, track)
main()
Anyway, my questions are:
- Am I correct that this has not yet been implemented?
- Where can I go to see if there are any existing change requests for this? (http://projects.blender.org/?)
- If I am interested in coding it, who should I talk to about making sure I get it right?