I have a code like this:
import numpy as np
import cv2
cap = cv2.VideoCapture('C:/Users/Hilman/haatsu/drive_recorder/sample/3.mov')
# Define the codec and create VideoWriter object
fourcc = cv2.VideoWriter_fourcc(*'XVID')
out = cv2.VideoWriter('output.avi', fourcc, 20.0, (640,480))
while(cap.isOpened()):
ret, frame = cap.read()
if ret==True:
frame = cv2.flip(frame,0)
# write the flipped frame
out.write(frame)
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
break
# Release everything if job is finished
cap.release()
out.release()
cv2.destroyAllWindows()
But the output.avi
cannot be played.
Tried also change the out = cv2.VideoWriter('output.avi', fourcc, 20.0, (640,480))
to something like this (as suggested by some people) out = cv2.VideoWriter('output.avi', -1, 20.0, (640,480))
. But when I did this, I got this message
OpenCV: FFMPEG: tag 0xffffffff/' ' is not found (format 'avi / AVI (Audio Video Interleaved)')'
.
What could be the problem? I am using Windows 10 by the way.
I couldn't get that code to run on my Windows 10 machine either.
So here's what I did:
ffmpeg
C:\ffmpeg\bin;
ffmpeg -version
_
import numpy as np
import cv2
import os
base_path = 'C:\\Users\\Hilman\\haatsu\\drive_recorder\\sample\\'
cap = cv2.VideoCapture('%s3.mov' % base_path)
i = 0
while(cap.isOpened()):
ret, frame = cap.read()
if ret==True:
frame = cv2.flip(frame,0)
cv2.imwrite(os.path.join(base_path, str(i) + '.png'), frame)
i = i + 1
else:
break
# Release everything if job is finished
cap.release()
C:\Users\Hilman\haatsu\drive_recorder\sample
and ran the following command: ffmpeg -framerate 29 -i %d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4
out.mp4
.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With