Skip to content

Commit 72a4bd4

Browse files
Merge pull request #220268 from Juliako/patch-43
Update video-indexer-output-json-v2.md
2 parents ca4fa79 + abafb18 commit 72a4bd4

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

articles/azure-video-indexer/video-indexer-output-json-v2.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,13 @@ For information, see [Azure Video Indexer insights](insights-overview.md).
3232
|`isEditable`|Indicates whether the current user is authorized to edit the playlist.|
3333
|`isBase`|Indicates whether the playlist is a base playlist (a video) or a playlist made of other videos (derived).|
3434
|`durationInSeconds`|The total duration of the playlist.|
35-
|`summarizedInsights`|Contains one [summarized insight](#summary-of-the-insights).
35+
|`summarizedInsights`|The produced JSON output contains `Insights` and `SummarizedInsights` elements. We recommend using `Insights` and not using `SummarizedInsights` (which is present for backward compatibility).|
3636
|`videos`|A list of [videos](#videos) that construct the playlist.<br/>If this playlist is constructed of time ranges of other videos (derived), the videos in this list will contain only data from the included time ranges.|
3737

3838
```json
3939
{
40-
"accountId": "bca61527-1221-bca6-1527-a90000002000",
40+
...
41+
"accountId": "00000000-0000-0000-0000-000000000000",
4142
"id": "abc3454321",
4243
"name": "My first video",
4344
"description": "I am trying VI",
@@ -49,25 +50,27 @@ For information, see [Azure Video Indexer insights](insights-overview.md).
4950
"isEditable": false,
5051
"isBase": false,
5152
"durationInSeconds": 120,
52-
"summarizedInsights" : { . . . }
53+
"summarizedInsights" : null,
5354
"videos": [{ . . . }]
5455
}
5556
```
5657

58+
> [!TIP]
59+
> The produced JSON output contains `Insights` and `SummarizedInsights` elements. We highly recommend using `Insights` and not using `SummarizedInsights` (which is present for backward compatibility).
60+
61+
5762
## Summary of the insights
5863

5964
This section shows a summary of the insights.
6065

61-
> [!TIP]
62-
> The produced JSON output contains `Insights` and `SummarizedInsights` elements. We highly recommend using `Insights` and not using `SummarizedInsights` (which is present for backward compatibility).
6366

6467
|Attribute | Description|
6568
|---|---|
6669
|`name`|The name of the video. For example: `Azure Monitor`.|
6770
|`id`|The ID of the video. For example: `63c6d532ff`.|
6871
|`privacyMode`|Your breakdown can have one of the following modes: A `Public` video is visible to everyone in your account and anyone who has a link to the video. A `Private` video is visible to everyone in your account.|
6972
|`duration`|The time when an insight occurred, in seconds.|
70-
|`thumbnailVideoId`|The ID of the video from which the thumbnail was taken.
73+
|`thumbnailVideoId`|The ID of the video from which the thumbnail was taken.|
7174
|`thumbnailId`|The video's thumbnail ID. To get the actual thumbnail, call [Get-Thumbnail](https://api-portal.videoindexer.ai/api-details#api=Operations&operation=Get-Video-Thumbnail) and pass it `thumbnailVideoId` and `thumbnailId`.|
7275
|`faces/animatedCharacters`|Contains zero or more faces. For more information, see [faces/animatedCharacters](#facesanimatedcharacters).|
7376
|`keywords`|Contains zero or more keywords. For more information, see [keywords](#keywords).|

0 commit comments

Comments
 (0)