Skip to content

Commit 1170d74

Browse files
committed
Merge pull request opencv#9261 from puqeko:patch-2
2 parents 6ae5a9f + 9deb206 commit 1170d74

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/py_tutorials/py_gui/py_video_display/py_video_display.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Otherwise open it using **cap.open()**.
5151

5252
You can also access some of the features of this video using **cap.get(propId)** method where propId
5353
is a number from 0 to 18. Each number denotes a property of the video (if it is applicable to that
54-
video) and full details can be seen here: cv::VideoCapture::get() .
54+
video) and full details can be seen here: cv::VideoCapture::get().
5555
Some of these values can be modified using **cap.set(propId, value)**. Value is the new value you
5656
want.
5757

@@ -66,7 +66,7 @@ Playing Video from file
6666
-----------------------
6767

6868
It is same as capturing from Camera, just change camera index with video file name. Also while
69-
displaying the frame, use appropriate time for cv2.waitKey(). If it is too less, video will be very
69+
displaying the frame, use appropriate time for `cv2.waitKey()`. If it is too less, video will be very
7070
fast and if it is too high, video will be slow (Well, that is how you can display videos in slow
7171
motion). 25 milliseconds will be OK in normal cases.
7272
@code{.py}
@@ -95,7 +95,7 @@ Saving a Video
9595
--------------
9696

9797
So we capture a video, process it frame-by-frame and we want to save that video. For images, it is
98-
very simple, just use cv2.imwrite(). Here a little more work is required.
98+
very simple, just use `cv2.imwrite()`. Here a little more work is required.
9999

100100
This time we create a **VideoWriter** object. We should specify the output file name (eg:
101101
output.avi). Then we should specify the **FourCC** code (details in next paragraph). Then number of
@@ -109,10 +109,10 @@ platform dependent. Following codecs works fine for me.
109109
- In Fedora: DIVX, XVID, MJPG, X264, WMV1, WMV2. (XVID is more preferable. MJPG results in high
110110
size video. X264 gives very small size video)
111111
- In Windows: DIVX (More to be tested and added)
112-
- In OSX : *(I don't have access to OSX. Can some one fill this?)*
112+
- In OSX: MJPG (.mp4), DIVX (.avi), X264 (.mkv).
113113

114-
FourCC code is passed as cv2.VideoWriter_fourcc('M','J','P','G') or
115-
cv2.VideoWriter_fourcc(\*'MJPG') for MJPG.
114+
FourCC code is passed as `cv2.VideoWriter_fourcc('M','J','P','G')` or
115+
`cv2.VideoWriter_fourcc(*'MJPG')` for MJPG.
116116

117117
Below code capture from a Camera, flip every frame in vertical direction and saves it.
118118
@code{.py}

0 commit comments

Comments
 (0)