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. ::