From d7d2d016d8fd421db15cc7884b6de1f4bd2e3671 Mon Sep 17 00:00:00 2001 From: William Guss Date: Sun, 25 Apr 2021 14:37:21 -0700 Subject: [PATCH] Update py_video_display.rst --- .../py_tutorials/py_gui/py_video_display/py_video_display.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/py_tutorials/py_gui/py_video_display/py_video_display.rst b/source/py_tutorials/py_gui/py_video_display/py_video_display.rst index 8ef746f..9ae4ec5 100644 --- a/source/py_tutorials/py_gui/py_video_display/py_video_display.rst +++ b/source/py_tutorials/py_gui/py_video_display/py_video_display.rst @@ -91,7 +91,7 @@ This time we create a **VideoWriter** object. We should specify the output file * In Windows: DIVX (More to be tested and added) * In OSX : *(I don't have access to OSX. Can some one fill this?)* -FourCC code is passed as ``cv2.VideoWriter_fourcc('M','J','P','G')`` or ``cv2.VideoWriter_fourcc(*'MJPG)`` for MJPG. +FourCC code is passed as ``cv2.VideoWriter_fourcc('M','J','P','G')`` or ``cv2.VideoWriter_fourcc(*'MJPG')`` for MJPG. Below code capture from a Camera, flip every frame in vertical direction and saves it. ::