Mercurial > code > home > repos > light9
view flax/textcues_to_cuelist @ 522:e20419d637d5
initial vidref tests
Ignore-this: f3ca12ad8071d889ed71689be0716827
author | drewp@bigasterisk.com |
---|---|
date | Tue, 08 Jun 2010 06:52:59 +0000 |
parents | 45b12307c695 |
children |
line wrap: on
line source
#!/usr/bin/env python import sys from CueFaders import CueList, Cue cuelist = CueList('cues/dolly') for line in sys.stdin.readlines(): line = line.strip() if not line: continue page, name = line.split(' ', 1) print page, '|', name newcue = Cue(name) newcue.page = page cuelist.add_cue(newcue)