Files @ 5c7ac46e33d3
Branch filter:

Location: light9/flax/textcues_to_cuelist

dmcc
more disabling of stuff that make no sense at certain times and some
more disabling of stuff that make no sense at certain times and some
bug fixes. still haven't fixed the scale problem
#!/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)