Skip to content

Commit a6ba799

Browse files
authored
Merge pull request #109263 from Juliako/patch-17
Update job-input-from-local-file-how-to.md
2 parents 1a647dc + 68455d4 commit a6ba799

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/media-services/latest/job-input-from-local-file-how-to.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@ ms.author: juliako
1818

1919
In Media Services v3, when you submit Jobs to process your videos, you have to tell Media Services where to find the input video. The input video can be stored as a Media Service Asset, in which case you create an input asset based on a file (stored locally or in Azure Blob storage). This topic shows how to create a job input from a local file. For a full example, see this [GitHub sample](https://github.com/Azure-Samples/media-services-v3-dotnet-tutorials/blob/master/AMSV3Tutorials/UploadEncodeAndStreamFiles/Program.cs).
2020

21+
## Prerequisites
22+
23+
* [Create a Media Services account](create-account-cli-how-to.md).
24+
* Review [manage assets](manage-asset-concept.md).
25+
2126
## .NET sample
2227

2328
The following code shows how to create an input asset and use it as the input for the job. The CreateInputAsset function performs the following actions:
2429

2530
* Creates the Asset
2631
* Gets a writable [SAS URL](https://docs.microsoft.com/azure/storage/common/storage-dotnet-shared-access-signature-part-1) to the Asset’s [container in storage](https://docs.microsoft.com/azure/storage/blobs/storage-quickstart-blobs-dotnet#upload-blobs-to-a-container)
27-
28-
For more information, see [Manage assets](manage-asset-concept.md).
2932
* Uploads the file into the container in storage using the SAS URL
3033

3134
[!code-csharp[Main](../../../media-services-v3-dotnet-tutorials/AMSV3Tutorials/UploadEncodeAndStreamFiles/Program.cs#CreateInputAsset)]

0 commit comments

Comments
 (0)