Skip to content

Commit 9795a72

Browse files
committed
Merge branch 'patch-7' into 5091-5095-5100-kate-jp-joe
2 parents ecad896 + 258c0d8 commit 9795a72

File tree

1 file changed

+10
-10
lines changed
  • articles/ai-services/content-understanding/video

1 file changed

+10
-10
lines changed

articles/ai-services/content-understanding/video/overview.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ With the prebuilt video analyzer (prebuilt-videoAnalyzer), you can upload a vide
5454

5555
* For example, creating the base `prebuilt-videoAnalyzer` as follows:
5656

57-
```jsonc
57+
```json
5858
{
5959
"config": {},
6060
"BaseAnalyzerId": "prebuilt-videoAnalyzer",
@@ -76,7 +76,7 @@ With the prebuilt video analyzer (prebuilt-videoAnalyzer), you can upload a vide
7676
WEBVTT
7777

7878
00:03.600 --> 00:06.000
79-
<Speaker 1 Speaker>Get new years ready.
79+
<Speaker 1>Get new years ready.
8080

8181
Key Frames
8282
- 00:00.600 ![](keyFrame.600.jpg)
@@ -90,7 +90,7 @@ With the prebuilt video analyzer (prebuilt-videoAnalyzer), you can upload a vide
9090
WEBVTT
9191

9292
00:03.600 --> 00:06.000
93-
<Speaker 1 Speaker>Go team!
93+
<Speaker 1>Go team!
9494

9595
Key Frames
9696
- 00:06.200 ![](keyFrame.6200.jpg)
@@ -154,7 +154,7 @@ Shape the output to match your business vocabulary. Use a `fieldSchema` object w
154154

155155
**Example:**
156156

157-
```jsonc
157+
```json
158158

159159
"fieldSchema": {
160160
"description": "Extract brand presence and sentiment per scene",
@@ -187,34 +187,34 @@ Shape the output to match your business vocabulary. Use a `fieldSchema` object w
187187

188188
Content Understanding offers three ways to slice a video, letting you get the output you need for whole videos or short clips. You can use these options by setting the `SegmentationMode` property on a custom analyzer.
189189

190-
* **Whole-video**`SegmentationMode = NoSegmentation`
190+
* **Whole-video**`segmentationMode : noSegmentation`
191191
The service treats the entire video file as a single segment and extracts metadata across its full duration.
192192

193193
**Example:**
194194
* Compliance checks that look for specific brand-safety issues anywhere in an ad
195195
* full-length descriptive summaries
196196

197-
* **Automatic segmentation**`SegmentationMode = Auto`
197+
* **Automatic segmentation**`segmentationMode = auto`
198198
The service analyzes the timeline and breaks it up for you. Groups successive shots into coherent scenes, capped at one minute each.
199199

200200
**Example:**
201201
* Create storyboards from a show
202202
* Inserting mid-roll ads at logical pauses.
203203

204-
* **Custom segmentation**`SegmentationMode = Custom`
204+
* **Custom segmentation**`segmentationMode : custom`
205205
You describe the logic in natural language and the model creates segments to match. Set `segmentationDefinition` with a string describing how you'd like the video to be segmented. Custom allows segments of varying length from seconds to minutes depending on the prompt.
206206

207207
**Example:**
208208
* Break a news broadcast up into stories.
209209

210-
```jsonc
210+
```json
211211
{
212212
"segmentationMode": "custom",
213213
"segmentationDefinition": "news broadcasts divided by individual stories"
214214
}
215215
```
216216

217-
## Face identification description add-on
217+
## Face identification and description add-on
218218

219219
> [!NOTE]
220220
>
@@ -231,7 +231,7 @@ The face add-on enables grouping and identification as output from the content e
231231

232232
### Field Extraction – Face description
233233

234-
The field extraction capability is enhanced by providing detailed descriptions of identified faces in the video. This capability includes attributes such as facial hair, emotions, and the presence of celebrities, which can be crucial for various analytical and indexing purposes. To enable face capabilities set `disableFaceBlurring=true` in the analyzer configuration.
234+
The field extraction capability is enhanced by providing detailed descriptions of identified faces in the video. This capability includes attributes such as facial hair, emotions, and the presence of celebrities, which can be crucial for various analytical and indexing purposes. To enable face description capabilities set `disableFaceBlurring : true` in the analyzer configuration.
235235

236236
**Examples:**
237237

0 commit comments

Comments
 (0)