Skip to content

Commit 8d4ce32

Browse files
committed
feedback
1 parent f316443 commit 8d4ce32

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

articles/remote-rendering/quickstarts/convert-model.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@ Once you have an Azure account, go to [https://portal.azure.com/#home](https://p
5151
### Storage account creation
5252

5353
To create blob storage, you first need a storage account.
54-
To create one, select "Create a resource":
54+
1. To create one, select "Create a resource":
5555

5656
![Azure - add resource](media/azure-add-a-resource.png)
5757

58-
From the new screen, choose **Storage** on the left side and then **Storage account - blob, file, table, queue** from the next column:
58+
2. From the new screen, choose **Storage** on the left side and then **Storage account - blob, file, table, queue** from the next column:
5959

6060
![Azure - add storage](media/azure-add-storage.png)
6161

62-
Clicking this button will bring up the following screen with storage properties to fill out:
62+
3. Clicking this button will bring up the following screen with storage properties to fill out:
6363

6464
![Azure Setup](media/azure-setup1.png)
6565

66-
Fill out the form in the following manner:
66+
4. Fill out the form in the following manner:
6767

6868
* Create a new Resource Group from the link below the drop-down box and name this **ARR_Tutorial**
6969
* For the **Storage account name**, enter a unique name here. **This name must be globally unique**, otherwise there will be a prompt that informs you that the name is already taken. In the scope of this quickstart, we name it **arrtutorialstorage**. Accordingly, you need to replace it with your name for any occurrence in this quickstart.
@@ -72,27 +72,27 @@ Fill out the form in the following manner:
7272
* **Premium account type** set to 'Block blobs'
7373
* **Redundancy** set to 'Zone-redundant storage (ZRS)'
7474

75-
None of the properties in other tabs have to be changed, so you can proceed with **"Review + create"** and then follow the steps to complete the setup.
75+
5. None of the properties in other tabs have to be changed, so you can proceed with **"Review + create"** and then follow the steps to complete the setup.
7676

77-
The website now informs you about the progress of your deployment and reports "Your deployment is complete" eventually. Select **"Go to resource"** for the next steps:
77+
6. The website now informs you about the progress of your deployment and reports "Your deployment is complete" eventually. Select **"Go to resource"** for the next steps:
7878

7979
![Azure Storage creation complete](./media/storage-creation-complete.png)
8080

8181
### Blob storage creation
8282

8383
Next we need two blob containers, one for input and one for output.
8484

85-
From the **"Go to resource"** button above, you get to a page with a panel on the left that contains a list menu. In that list under the **"Blob service"** category, select **"Containers"**:
85+
1. From the **"Go to resource"** button above, you get to a page with a panel on the left that contains a list menu. In that list under the **"Blob service"** category, select **"Containers"**:
8686

8787
![Azure - add Containers](./media/azure-add-containers.png)
8888

89-
Press the **"+ Container"** button to create the **input** blob storage container.
89+
2. Press the **"+ Container"** button to create the **input** blob storage container.
9090
Use the following settings when creating it:
9191

9292
* Name = arrinput
9393
* Public access level = Private
9494

95-
After the container has been created, select **+ Container** again and repeat with these settings for the **output** container:
95+
3. After the container has been created, select **+ Container** again and repeat with these settings for the **output** container:
9696

9797
* Name = arroutput
9898
* Public access level = Private
@@ -116,10 +116,10 @@ To make it easier to call the asset conversion service, we provide a utility scr
116116

117117
In particular, this script
118118

119-
1. uploads all files in a given directory from local disk to the input storage container
120-
1. calls the [the asset conversion REST API](../how-tos/conversion/conversion-rest-api.md), which will retrieve the data from the input storage container and start a conversion, which will return a conversion ID
121-
1. poll the conversion status API with the retrieved conversion ID until the conversion process terminates with success or failure
122-
1. retrieves a link to the converted asset in the output storage
119+
* uploads all files in a given directory from local disk to the input storage container,
120+
* calls the [the asset conversion REST API](../how-tos/conversion/conversion-rest-api.md), which will retrieve the data from the input storage container and start a conversion, which will return a conversion ID,
121+
* polls the conversion status API with the retrieved conversion ID until the conversion process terminates with success or failure,
122+
* retrieves a link to the converted asset in the output storage.
123123

124124
The script reads its configuration from the file *Scripts\arrconfig.json*. Open that JSON file in a text editor.
125125

324 Bytes
Loading

0 commit comments

Comments
 (0)