Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
def skip_frames(cap, movie):
cv.QueryFrame(cap) # why exactly do I need to skip the first one?

# skip frames in the beginning (credits, etc), if neccessary
# skip frames in the beginning (credits, etc), if necessary
start_frame = int( movie.attrib["start_frame"] )
start_frame -= 1
print "skipping", start_frame, "frames"
Expand Down