summaryrefslogtreecommitdiff
path: root/AutoVideosGPU.py
diff options
context:
space:
mode:
Diffstat (limited to 'AutoVideosGPU.py')
-rw-r--r--AutoVideosGPU.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/AutoVideosGPU.py b/AutoVideosGPU.py
index a088e65..e65f82d 100644
--- a/AutoVideosGPU.py
+++ b/AutoVideosGPU.py
@@ -98,8 +98,13 @@ def createVideo(width, height, videoLength, frameRate, functionLength,
except:
fourcc = cv2.VideoWriter_fourcc(*'XVID')
name = ' '.join([namemaker3.generate() for i in range(3)]) + '.avi'
- out = cv2.VideoWriter(directory+'/'+name,fourcc, frameRate, (width,height))
-
+ out = cv2.VideoWriter(directory+'/'+name, fourcc, frameRate, (width,height))
+ if not out.isOpened():
+ try:
+ fourcc = cv2.cv.CV_FOURCC(*'MJPG')
+ except:
+ fourcc = cv2.VideoWriter_fourcc(*'MJPG')
+ out = cv2.VideoWriter(directory+'/'+name, fourcc, frameRate, (width,height))
for t in range(int(videoLength*frameRate)):
clProgram = replace(clProgramTemplate2, '<FRAMENUMBER>', str(t))
@@ -120,6 +125,7 @@ def createVideo(width, height, videoLength, frameRate, functionLength,
out.write(output[:, :, ::-1])
out.release()
+
def createVideos():