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/edit-transcript-lines-portal.md
+80-9Lines changed: 80 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,20 @@
1
1
---
2
-
title: Insert or remove transcript lines in Azure Video Indexer website
3
-
description: This article explains how to insert or remove a transcript line in the Azure Video Indexer website.
2
+
title: View and update transcriptions in Azure Video Indexer website
3
+
description: This article explains how to insert or remove a transcript line in the Azure Video Indexer website. It also shows how to view word-level information.
4
4
ms.author: itnorman
5
5
ms.topic: how-to
6
6
ms.date: 05/03/2022
7
7
---
8
8
9
-
# Insert or remove transcript lines in the Azure Video Indexer website
9
+
# View and update transcriptions
10
10
11
-
This article explains how to insert or remove a transcript line in the [Azure Video Indexer website](https://www.videoindexer.ai/).
11
+
This article explains how to insert or remove a transcript line in the Azure Video Indexer website. It also shows how to view word-level information.
12
12
13
-
## Add new line to the transcript timeline
13
+
## Insert or remove transcript lines in the Azure Video Indexer website
14
+
15
+
This section explains how to insert or remove a transcript line in the [Azure Video Indexer website](https://www.videoindexer.ai/).
16
+
17
+
### Add new line to the transcript timeline
14
18
15
19
While in the edit mode, hover between two transcription lines. You'll find a gap between **ending time** of the **transcript line** and the beginning of the following transcript line, user should see the following **add new transcription line** option.
16
20
@@ -29,23 +33,90 @@ Choose an existing line in the transcript line, click the **three dots** icon, s
29
33
>
30
34
> While using the API, when adding a new line, **Speaker name** can be added using free text. For example, *Speaker 1* can now become *Adam*.
31
35
32
-
## Edit existing line
36
+
###Edit existing line
33
37
34
38
While in the edit mode, select the three dots icon. The editing options were enhanced, they now contain not just the text but also the time stamp with accuracy of milliseconds.
35
39
36
-
## Delete line
40
+
###Delete line
37
41
38
42
Lines can now be deleted through the same three dots icon.
39
43
40
-
##Example how and when to use this feature
44
+
### Consolidate two lines as one
41
45
42
46
To consolidate two lines, which you believe should appear as one.
43
47
44
48
1. Go to line number 2, select edit.
45
49
1. Copy the text
46
50
1. Delete the line
47
51
1. Go to line 1, edit, paste the text and save.
48
-
52
+
53
+
## Examine word-level transcription information
54
+
55
+
This section shows how to examine word-level transcription information based on sentences and phrases that Azure Video Indexer identified. Each phrase is broken into words and each word has the following information associated with it
56
+
57
+
|Name|Description|Example|
58
+
|---|---|---|
59
+
|Word|A word from a phrase.|"thanks"|
60
+
|Confidence|How confident the Azure Video Indexer that the word is correct.|0.80127704|
61
+
|Offset|The time offset from the beginning of the video to where the word starts.|PT0.86S|
62
+
|Duration|The duration of the word.|PT0.28S|
63
+
64
+
### Get and view the transcript
65
+
66
+
1. Sign in on the [Azure Video Indexer website](https://www.videoindexer.ai).
67
+
1. Select a video.
68
+
1. In the top-right corner, press arrow down and select **Artifacts (ZIP)**.
69
+
1. Download the artifacts.
70
+
1. Unzip the downloaded file > browse to where the unzipped files are located > find and open `transcript.speechservices.json`.
71
+
1. Format and view the json.
72
+
1. Find`RecognizedPhrases` > `NBest` > `Words` and find interesting to you information.
73
+
74
+
```json
75
+
"RecognizedPhrases": [
76
+
{
77
+
"RecognitionStatus": "Success",
78
+
"Channel": 0,
79
+
"Speaker": 1,
80
+
"Offset": "PT0.86S",
81
+
"Duration": "PT11.01S",
82
+
"OffsetInTicks": 8600000,
83
+
"DurationInTicks": 110100000,
84
+
"NBest": [
85
+
{
86
+
"Confidence": 0.82356554,
87
+
"Lexical": "thanks for joining ...",
88
+
"ITN": "thanks for joining ...",
89
+
"MaskedITN": "",
90
+
"Display": "Thanks for joining ...",
91
+
"Words": [
92
+
{
93
+
"Word": "thanks",
94
+
"Confidence": 0.80127704,
95
+
"Offset": "PT0.86S",
96
+
"Duration": "PT0.28S",
97
+
"OffsetInTicks": 8600000,
98
+
"DurationInTicks": 2800000
99
+
},
100
+
{
101
+
"Word": "for",
102
+
"Confidence": 0.93965703,
103
+
"Offset": "PT1.15S",
104
+
"Duration": "PT0.13S",
105
+
"OffsetInTicks": 11500000,
106
+
"DurationInTicks": 1300000
107
+
},
108
+
{
109
+
"Word": "joining",
110
+
"Confidence": 0.97060966,
111
+
"Offset": "PT1.29S",
112
+
"Duration": "PT0.31S",
113
+
"OffsetInTicks": 12900000,
114
+
"DurationInTicks": 3100000
115
+
},
116
+
{
117
+
118
+
```
119
+
49
120
## Next steps
50
121
51
122
For updating transcript lines and text using API visit [Azure Video Indexer Developer portal](https://aka.ms/avam-dev-portal)
0 commit comments