I am trying to just cut videos based on a time stamp in Python 2.7. I would 
then save the resulting files as new files.

How do you do this with AVBin / Pyglet?

psuedocode:

def split_vid (list_of_time_stamps, file)
    index =0
    for time_stamp in list_of_time_stamps:
        file.cut(time_stamp)
        file.save(file.name + str(index))
        index = index+1

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyglet-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to