getVideo

suspend fun getVideo(argument: GetVideoPlainArgs): GetVideoResult

Retrieves an existing video resource with the given name. Uses Azure REST API version 2021-11-01-preview.

Return

Represents a video resource within Azure Video Analyzer. Videos can be ingested from RTSP cameras through live pipelines or can be created by exporting sequences from existing captured video through a pipeline job. Videos ingested through live pipelines can be streamed through Azure Video Analyzer Player Widget or compatible players. Exported videos can be downloaded as MP4 files.

Parameters

argument

null


suspend fun getVideo(accountName: String, resourceGroupName: String, videoName: String): GetVideoResult

Return

Represents a video resource within Azure Video Analyzer. Videos can be ingested from RTSP cameras through live pipelines or can be created by exporting sequences from existing captured video through a pipeline job. Videos ingested through live pipelines can be streamed through Azure Video Analyzer Player Widget or compatible players. Exported videos can be downloaded as MP4 files.

Parameters

accountName

The Azure Video Analyzer account name.

resourceGroupName

The name of the resource group. The name is case insensitive.

videoName

The Video name.

See also


suspend fun getVideo(argument: suspend GetVideoPlainArgsBuilder.() -> Unit): GetVideoResult

Return

Represents a video resource within Azure Video Analyzer. Videos can be ingested from RTSP cameras through live pipelines or can be created by exporting sequences from existing captured video through a pipeline job. Videos ingested through live pipelines can be streamed through Azure Video Analyzer Player Widget or compatible players. Exported videos can be downloaded as MP4 files.

Parameters

argument

Builder for com.pulumi.azurenative.videoanalyzer.kotlin.inputs.GetVideoPlainArgs.

See also