Skip to content

Commit 41ae37a

Browse files
authored
Update job-multiple-transform-outputs.md
1 parent 56f06c0 commit 41ae37a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/media-services/latest/job-multiple-transform-outputs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: juliako
1616

1717
# Create a job with multiple transform outputs
1818

19-
This topic shows how to create a Transform with two outputs. The first output specifies to encode a video with adaptive bitrate streaming. The second output specifies to get the video insights with `VideoAnalyzerPreset`. Once you set up your transform you can submit a job that will process your video according to the transform. Since in this example we are specifying two Transform outputs, we must specify two Job outputs.
19+
This topic shows how to create a Transform with two outputs. The first output specifies to encode a video with adaptive bitrate streaming. The second output specifies to process the video with `AudioAnalyzerPreset`. Once you set up your transform you can submit a job that will process your video according to the transform. Since in this example we are specifying two Transform outputs, we must specify two Job outputs.
2020

2121
> [!TIP]
2222
> Before you start developing, review [Developing with Media Services v3 APIs](media-services-apis-overview.md) (includes information on accessing APIs, naming conventions, etc.)
@@ -50,7 +50,7 @@ private static async Task<Transform> GetOrCreateTransformAsync(
5050
}
5151
},
5252
// Create an analyzer preset with video insights.
53-
new TransformOutput(new VideoAnalyzerPreset("en-US"))
53+
new TransformOutput(new AudioAnalyzerPreset("en-US"))
5454
};
5555

5656
// Create the Transform with the output defined above

0 commit comments

Comments
 (0)