chore: fix some typos in comments (#11028)

Signed-off-by: alongdate <alongyear@outlook.com>
This commit is contained in:
Aida Syoko
2024-04-20 19:16:43 +08:00
committed by GitHub
parent 3ca2d599d3
commit 3d612e510c
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ def get_frame_shape(source):
if video_info["height"] != 0 and video_info["width"] != 0:
return (video_info["height"], video_info["width"], 3)
# fallback to using opencv if ffprobe didnt succeed
# fallback to using opencv if ffprobe didn't succeed
video = cv2.VideoCapture(source)
ret, frame = video.read()
frame_shape = frame.shape