#!/usr/bin/python
#
# LiveCut
# (c) 2002 Jerome Alet <alet@librelogiciel.com>
# You're welcome to redistribute this software under the
# terms of the GNU General Public Licence version 2.0
# or, at your option, any higher version.
#
# You can read the complete GNU GPL in the file COPYING
# which should come along with this software, or visit
# the Free Software Foundation's WEB site http://www.fsf.org
#
# $Id: livecut,v 1.2 2003/02/27 12:10:45 jalet Exp $
#
#

import sys
from livecut import livecut

if __name__ == "__main__" :
    nargs = len(sys.argv)
    if nargs <= 1 :
        timeline = "timeline.lvc"
    else :
        timeline = sys.argv[1]
        if nargs > 2 :
            sys.stderr.write("LiveCut : timeline file %s, other arguments ignored.\n" % timeline)
    livecut.main(timeline)
