Skip to content

Commit e82b535

Browse files
Merge pull request #217122 from Juliako/patch-37
Update edit-transcript-lines-portal.md
2 parents a7adc35 + f00c80b commit e82b535

File tree

2 files changed

+81
-10
lines changed

2 files changed

+81
-10
lines changed

articles/azure-video-indexer/edit-transcript-lines-portal.md

Lines changed: 80 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
---
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.
44
ms.author: itnorman
55
ms.topic: how-to
66
ms.date: 05/03/2022
77
---
88

9-
# Insert or remove transcript lines in the Azure Video Indexer website
9+
# View and update transcriptions
1010

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.
1212

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
1418

1519
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.
1620

@@ -29,23 +33,90 @@ Choose an existing line in the transcript line, click the **three dots** icon, s
2933
>
3034
> 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*.
3135
32-
## Edit existing line
36+
### Edit existing line
3337

3438
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.
3539

36-
## Delete line
40+
### Delete line
3741

3842
Lines can now be deleted through the same three dots icon.
3943

40-
## Example how and when to use this feature
44+
### Consolidate two lines as one
4145

4246
To consolidate two lines, which you believe should appear as one.
4347

4448
1. Go to line number 2, select edit.
4549
1. Copy the text
4650
1. Delete the line
4751
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+
49120
## Next steps
50121

51122
For updating transcript lines and text using API visit [Azure Video Indexer Developer portal](https://aka.ms/avam-dev-portal)

articles/azure-video-indexer/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
href: video-indexer-search.md
126126
- name: Detect scenes, shots, keyframes
127127
href: scenes-shots-keyframes.md
128-
- name: Insert or remove transcript lines
128+
- name: View and update transcriptions
129129
href: edit-transcript-lines-portal.md
130130
- name: Identify and transcribe multi-language content
131131
href: multi-language-identification-transcription.md

0 commit comments

Comments
 (0)