diff --git a/.github/README_cn.md b/.github/README_cn.md index 718a53933eec..7b56462905d7 100644 --- a/.github/README_cn.md +++ b/.github/README_cn.md @@ -102,7 +102,7 @@ python detect.py --source 0 # 网络摄像头 img.jpg # 图像 vid.mp4 # 视频 path/ # 文件夹 - path/*.jpg # glob + 'path/*.jpg' # glob 'https://youtu.be/Zgi9g1ksQHc' # YouTube 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP 流 ``` diff --git a/README.md b/README.md index a6fc8c326217..219911f5deb5 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ python detect.py --source 0 # webcam img.jpg # image vid.mp4 # video path/ # directory - path/*.jpg # glob + 'path/*.jpg' # glob 'https://youtu.be/Zgi9g1ksQHc' # YouTube 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream ``` diff --git a/tutorial.ipynb b/tutorial.ipynb index 3631f99bde91..7f6315e8aab7 100644 --- a/tutorial.ipynb +++ b/tutorial.ipynb @@ -448,7 +448,7 @@ " img.jpg # image \n", " vid.mp4 # video\n", " path/ # directory\n", - " path/*.jpg # glob\n", + " 'path/*.jpg' # glob\n", " 'https://youtu.be/Zgi9g1ksQHc' # YouTube\n", " 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP stream\n", "```" @@ -1139,4 +1139,4 @@ "outputs": [] } ] -} \ No newline at end of file +}