OpenCV имеет Оболочки Python .
Поскольку вас интересует IO видео, посмотрите QueryFrame и связанные с ним функции.
В конце ваш код будет выглядеть примерно так (полностью не проверено):
import cv
capture = cv.CaptureFromFile(filename)
while Condition1:
# Need a frame to get the output video dimensions
frame = cv.RetrieveFrame(capture) # Will return None if there are no frames
# New video file
video_out = cv.CreateVideoWriter(output_filenameX, CV_FOURCC('M','J','P','G'), capture.fps, frame.size(), 1)
# Write the frames
cv.WriteFrame(video_out, frame)
while Condition2:
frame = cv.RetrieveFrame(capture) # Will return None if there are no frames
cv.WriteFrame(video_out, frame)
Кстати, есть и способы сделать это без написания кода .