Hello,
I am using a Jetson Nano 4 GB model. I am trying to save a video capture frame-by-frame using VideoWriter with OpenCV. When the file is saved as an mp4, the output only shows a green screen for the recorded amount of time. The video capture is currently working and getting frames from the CSI camera.
Here is the VideoCapture gstreamer_pipeline:
def gstreamer_pipeline(
sensor_id=0,
capture_width=640,
capture_height=480,
display_width=320,
display_height=240,
framerate=15,
flip_method=0,
):
return (
"nvarguscamerasrc sensor-id=%d !"
"video/x-raw(memory:NVMM), width=(int)%d, height=(int)%d, framerate=(fraction)%d/1 ! "
"nvvidconv flip-method=%d ! "
"video/x-raw, width=(int)%d, height=(int)%d, format=(string)BGRx ! "
"videoconvert ! "
"video/x-raw, format=(string)BGR ! appsink"
% (
sensor_id,
capture_width,
capture_height,
framerate,
flip_method,
display_width,
display_height,
)
)
Here is the VideoWriter gstreamer_pipeline [does not work]:
gstreamer_pipeline = (
"appsrc caps=video/x-raw,format=BGR,width=640,height=480,framerate=15/1 ! "
"videoconvert ! video/x-raw,format=I420 ! x264enc ! mp4mux ! filesink location=output.mp4")
out = cv.VideoWriter(gstreamer_pipeline, cv.CAP_GSTREAMER, 25, (640, 480), True)
Thank you Friend,
Friend.