Skip to content

Commit 79e6935

Browse files
committed
Improvements to ONVIF how to
1 parent 6f833e0 commit 79e6935

File tree

2 files changed

+163
-127
lines changed

2 files changed

+163
-127
lines changed

articles/iot-operations/discover-manage-assets/howto-use-media-connector.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ To configure an asset that captures snapshots from a camera and publishes them t
233233
# Find the name of your custom location
234234
CUSTOM_LOCATION_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
235235
236-
# Use the Bicep file to deploy the asset endpoint
236+
# Use the Bicep file to deploy the asset
237237
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-snapshot-to-mqtt.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
238238
```
239239

@@ -256,7 +256,7 @@ To configure an asset that captures snapshots from a camera and publishes them t
256256
# Find the name of your custom location
257257
$CUSTOM_LOCATION_NAME = (az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
258258
259-
# Use the Bicep file to deploy the asset endpoint
259+
# Use the Bicep file to deploy the asset
260260
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-snapshot-to-mqtt.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
261261
```
262262

@@ -326,7 +326,7 @@ To configure an asset that captures snapshots from a camera and saves them as fi
326326
# Find the name of your custom location
327327
CUSTOM_LOCATION_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
328328
329-
# Use the Bicep file to deploy the asset endpoint
329+
# Use the Bicep file to deploy the asset
330330
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-snapshot-to-fs.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
331331
```
332332

@@ -349,7 +349,7 @@ To configure an asset that captures snapshots from a camera and saves them as fi
349349
# Find the name of your custom location
350350
$CUSTOM_LOCATION_NAME = (az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
351351
352-
# Use the Bicep file to deploy the asset endpoint
352+
# Use the Bicep file to deploy the asset
353353
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-snapshot-to-fs.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
354354
```
355355

@@ -400,7 +400,7 @@ To configure an asset that captures clips from a camera and saves them as files:
400400
# Find the name of your custom location
401401
CUSTOM_LOCATION_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
402402
403-
# Use the Bicep file to deploy the asset endpoint
403+
# Use the Bicep file to deploy the asset
404404
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-clip-to-fs.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
405405
```
406406

@@ -423,7 +423,7 @@ To configure an asset that captures clips from a camera and saves them as files:
423423
# Find the name of your custom location
424424
$CUSTOM_LOCATION_NAME = (az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
425425
426-
# Use the Bicep file to deploy the asset endpoint
426+
# Use the Bicep file to deploy the asset
427427
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-clip-to-fs.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME
428428
```
429429

@@ -477,7 +477,7 @@ You made a note of the IP address of the media server when you deployed it in a
477477
# Find the name of your custom location
478478
CUSTOM_LOCATION_NAME=$(az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
479479
480-
# Use the Bicep file to deploy the asset endpoint
480+
# Use the Bicep file to deploy the asset
481481
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-stream-to-rtsp.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME mediaServerAddress=$MEDIA_SERVER_ADDRESS
482482
```
483483

@@ -501,7 +501,7 @@ You made a note of the IP address of the media server when you deployed it in a
501501
# Find the name of your custom location
502502
$CUSTOM_LOCATION_NAME = (az iot ops list -g $RESOURCE_GROUP --query "[0].extendedLocation.name" -o tsv)
503503
504-
# Use the Bicep file to deploy the asset endpoint
504+
# Use the Bicep file to deploy the asset
505505
az deployment group create --subscription $SUBSCRIPTION_ID --resource-group $RESOURCE_GROUP --template-file asset-stream-to-rtsp.bicep --parameters customLocationName=$CUSTOM_LOCATION_NAME aepName=$AEP_NAME mediaServerAddress=$MEDIA_SERVER_ADDRESS
506506
```
507507

0 commit comments

Comments
 (0)