Exemple #1
0
def main():
    options, args = get_options(warn=True);
    actions = do_work(args, options)
    
    if bool(options.verbose) == True:
        display_actions(actions)
    print "Output Duration = %.3f sec" % sum(act.duration for act in actions)
    
    # Send to renderer
    print "Rendering..."
    render(actions, 'capsule.mp3')
    return 1
Exemple #2
0
def main():
    options, args = get_options(warn=True);
    actions = do_work(args, options)
    verbose = bool(options.verbose)
    
    if verbose:
        display_actions(actions)
        print "Output Duration = %.3f sec" % sum(act.duration for act in actions)
    
        print "Rendering..."
    # Send to renderer
    render(actions, 'capsule.mp3', verbose)
    return 1
def main():
    options, args = get_options(warn=True);
    actions = do_work(args, options)
    verbose = bool(options.verbose)
    stop = bool(options.stop)
    
    
    if verbose:
        display_actions(actions)
        print "Output Duration = %.3f sec" % sum(act.duration for act in actions)
    
        print "Rendering..."
    # Send to renderer
    dts = str(time.time())
    if stop:
        render(actions, 'hmix_%s.mp3' % dts, verbose)    
    else:
        render(actions, 'captemp.mp3', verbose)
        
    return 1
Exemple #4
0
def main():
    options, args = get_options(warn=True)
    actions = do_work(args, options)
    verbose = bool(options.verbose)
    stop = bool(options.stop)

    if verbose:
        display_actions(actions)
        print "Output Duration = %.3f sec" % sum(act.duration
                                                 for act in actions)

        print "Rendering..."
    # Send to renderer
    dts = str(time.time())
    if stop:
        render(actions, 'hmix_%s.mp3' % dts, verbose)
    else:
        render(actions, 'captemp.mp3', verbose)

    return 1