Skip to content

Commit 526b226

Browse files
authored
Merge pull request #97041 from Juliako/patch-155
Update indexer-task-preset.md
2 parents d1cd373 + 4fe5120 commit 526b226

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/media-services/previous/indexer-task-preset.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following table explains elements and attributes of the configuration XML.
2929
|---|---|---|
3030
|Input|true|Asset file(s) that you want to index.<br/>Azure Media Indexer supports the following media file formats: MP4, MOV, WMV, MP3, M4A, WMA, AAC, WAV. <br/><br/>You can specify the file name (s) in the **name** or **list** attribute of the **input** element (as shown below). If you do not specify which asset file to index, the primary file is picked. If no primary asset file is set, the first file in the input asset is indexed.<br/><br/>To explicitly specify the asset file name, do:<br/>```<input name="TestFile.wmv" />```<br/><br/>You can also index multiple asset files at once (up to 10 files). To do this:<br/>- Create a text file (manifest file) and give it an .lst extension.<br/>- Add a list of all the asset file names in your input asset to this manifest file.<br/>- Add (upload) the manifest file to the asset.<br/>- Specify the name of the manifest file in the input’s list attribute.<br/>```<input list="input.lst">```<br/><br/>**Note:** If you add more than 10 files to the manifest file, the indexing job will fail with the 2006 error code.|
3131
|metadata|false|Metadata for the specified asset file(s).<br/>```<metadata key="..." value="..." />```<br/><br/>You can supply values for predefined keys. <br/><br/>Currently, the following keys are supported:<br/><br/>**title** and **description** - used to update the language model to improve speech recognition accuracy.<br/>```<metadata key="title" value="[Title of the media file]" /><metadata key="description" value="[Description of the media file]" />```<br/><br/>**username** and **password** - used for authentication when downloading internet files via http or https.<br/>```<metadata key="username" value="[UserName]" /><metadata key="password" value="[Password]" />```<br/>The username and password values apply to all media URLs in the input manifest.|
32-
|features<br/><br/>Added in version 1.2. Currently, the only supported feature is speech recognition ("ASR").|false|The Speech Recognition feature has the following settings keys:<br/><br/>Language:<br/>- The natural language to be recognized in the multimedia file.<br/>- English, Spanish<br/><br/>CaptionFormats:<br/>- a semicolon-separated list of the desired output caption formats (if any)<br/>- ttml;sami;webvtt<br/><br/><br/>GenerateAIB:<br/>- A boolean flag specifying whether or not an AIB file is required (for use with SQL Server and the customer Indexer IFilter). For more information, see Using AIB Files with Azure Media Indexer and SQL Server.<br/>- True; False<br/><br/>GenerateKeywords:<br/>- A boolean flag specifying whether or not a keyword XML file is required.<br/>- True; False.|
32+
|features<br/><br/>Added in version 1.2. Currently, the only supported feature is speech recognition ("ASR").|false|The Speech Recognition feature has the following settings keys:<br/><br/>Language:<br/>- The natural language to be recognized in the multimedia file.<br/>- English, Spanish<br/><br/>CaptionFormats:<br/>- a semicolon-separated list of the desired output caption formats (if any)<br/>- ttml;webvtt<br/><br/><br/>GenerateKeywords:<br/>- A boolean flag specifying whether or not a keyword XML file is required.<br/>- True; False.|
3333

3434
## Azure Media Indexer configuration XML example
3535

@@ -47,8 +47,6 @@ The following table explains elements and attributes of the configuration XML.
4747
<feature name="ASR">
4848
<settings>
4949
<add key="Language" value="English"/>
50-
<add key="CaptionFormats" value="ttml;sami;webvtt"/>
51-
<add key="GenerateAIB" value ="true" />
5250
<add key="GenerateKeywords" value ="true" />
5351
</settings>
5452
</feature>

0 commit comments

Comments
 (0)