|
2 | 2 |
|
3 | 3 | # Google Cloud Video Intelligence API Node.js Samples
|
4 | 4 |
|
5 |
| -The [Cloud Video Intellience API][video_docs] allows developers to easily |
6 |
| -integrate video analysis within applications, including video labeling, face |
7 |
| -detection, and shot change detection. |
| 5 | +The [Cloud Video Intelligence API][video_docs] allows developers to easily |
| 6 | +integrate video analysis within applications, including video labeling, safe search |
| 7 | +, and shot change detection. |
8 | 8 |
|
9 | 9 | [video_docs]: https://cloud.google.com/video-intelligence/docs/
|
10 | 10 |
|
@@ -41,17 +41,19 @@ __Usage:__ `node analyze.js --help`
|
41 | 41 |
|
42 | 42 | ```
|
43 | 43 | Commands:
|
44 |
| - faces <gcsUri> Analyzes faces in a video using the Cloud Video Intelligence API. |
45 |
| - shots <gcsUri> Analyzes shot angles in a video using the Cloud Video Intelligence API. |
46 |
| - labels <gcsUri> Labels objects in a video using the Cloud Video Intelligence API. |
| 44 | + shots <gcsUri> Analyzes shot angles in a video stored in Google Cloud Storage using the Cloud Video |
| 45 | + Intelligence API. |
| 46 | + labels-gcs <gcsUri> Labels objects in a video stored in Google Cloud Storage using the Cloud Video Intelligence API. |
| 47 | + labels-file <gcsUri> Labels objects in a video stored locally using the Cloud Video Intelligence API. |
47 | 48 |
|
48 | 49 | Options:
|
49 | 50 | --help Show help [boolean]
|
50 | 51 |
|
51 | 52 | Examples:
|
52 |
| - node analyze.js faces gs://my-bucket/my-video.mp4 |
53 | 53 | node analyze.js shots gs://my-bucket/my-video.mp4
|
54 |
| - node analyze.js labels gs://my-bucket/my-video.mp4 |
| 54 | + node analyze.js labels-gcs gs://my-bucket/my-video.mp4 |
| 55 | + node analyze.js labels-file my-video.mp4 |
| 56 | + node analyze.js unsafe-content gs://my-bucket/my-video.mp4 |
55 | 57 |
|
56 | 58 | For more information, see https://cloud.google.com/video-intelligence/docs
|
57 | 59 | ```
|
|
0 commit comments