You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-video-indexer/video-indexer-output-json-v2.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,13 @@ For information, see [Azure Video Indexer insights](insights-overview.md).
32
32
|`isEditable`|Indicates whether the current user is authorized to edit the playlist.|
33
33
|`isBase`|Indicates whether the playlist is a base playlist (a video) or a playlist made of other videos (derived).|
34
34
|`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).|
36
36
|`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.|
@@ -49,25 +50,27 @@ For information, see [Azure Video Indexer insights](insights-overview.md).
49
50
"isEditable": false,
50
51
"isBase": false,
51
52
"durationInSeconds": 120,
52
-
"summarizedInsights" : { . . . }
53
+
"summarizedInsights" : null,
53
54
"videos": [{ . . . }]
54
55
}
55
56
```
56
57
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
+
57
62
## Summary of the insights
58
63
59
64
This section shows a summary of the insights.
60
65
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).
63
66
64
67
|Attribute | Description|
65
68
|---|---|
66
69
|`name`|The name of the video. For example: `Azure Monitor`.|
67
70
|`id`|The ID of the video. For example: `63c6d532ff`.|
68
71
|`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.|
69
72
|`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.|
71
74
|`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`.|
72
75
|`faces/animatedCharacters`|Contains zero or more faces. For more information, see [faces/animatedCharacters](#facesanimatedcharacters).|
73
76
|`keywords`|Contains zero or more keywords. For more information, see [keywords](#keywords).|
0 commit comments