This commit is contained in:
j 2007-08-12 10:23:28 +00:00
parent 635184f8ad
commit 98b94fade8
1 changed files with 7 additions and 1 deletions

View File

@ -42,9 +42,15 @@ def loadFrame(afile, position):
def loadClip(afile, position):
position = basename(position).replace(':', '.')
positions = position.split(';')
if len(positions) > 1:
position = positions[0]
outpoint= positions[1]
else:
outpoint = -1
flash = join(afile.frameFolder, '%s.%s' % (position, 'flv'))
if not exists(flash):
afile.extractClip(position)
afile.extractClip(position, outpoint)
if exists(flash):
return loadFile(flash)
return ''