Encoding Video with .NET Core and Azure Media Services — Part 1

Jean-Marc Skopek
Jean-Marc’s Thoughts
4 min readApr 24, 2018

Part 1: Authenticating with Azure Media Services

Azure Media Services is a service that can encode video for mobile devices, generate thumbnails, and even create subtitles from audio tracks. It’s powerful and cheap, and I wanted to use it in an application.

Sadly, there is no official API for .NET Core.

In this tutorial, I will demonstrate how to create a bare-bones REST connector for Azure Media Services in C# and .NET Core 2.0. We will start by building a project that can talk to Azure Media Services.

Creating the Project

Let’s start by creating our new project. For this demonstration, we will create a simple console application, but all of the principles should work just as well in a web application.

Open Visual Studio and create a new “Console App (.NET Core)” project:

You should now have a simple project that outputs “Hello World!” to a console.

Time to spice things up a notch.

Setting up our Azure Media Services Account

Before you can even start to think about talking to Azure Media Services (or AMS, for short), you first need to create an Azure Media Services account via the Azure portal.

Once your Azure Media Services account is created, you will need to create a client id/secret pair and download the required connection information. This includes:

  • Azure Active Directory tenant domain
  • REST API Endpoint
  • Client ID
  • Client Secret

The AAD tenant domain and REST API endpoint can be found by clicking on your Azure Media Service instance from the Azure portal, then clicking on “API Access” and then “Connect to Azure Media Services API with service principal”.

You will then see your tenant domain and REST API endpoint.

You may generate a Client ID and Secret from this part of the Azure Portal. The interface is clunky and hard to follow, but Microsoft has a decent guide for how to generate the client information.

Once you have the required information, add it to the main method of your console program. This is a bad approach in practice — it is important to never hard-code sensitive data into code or commit it into a repository — but we’re going for the simplest possible solution to start.

Now that our credentials are accessible, let’s start building the REST service

Building our Azure Media Services Client

Let’s create a new class to serve as our Media Encoder Service. Create a Services folder within the Solution Explorer, then create a MediaServices class within the newly created folder.

Now let’s create a constructor that takes the configuration values and stores them internally

We will need to create an HttpClient instance that will be used to communicate with the AMS REST API. Let’s initialize that client and set the proper request headers:

Create a new HttpClient in the newly created MediaService class

Pay close attention to the request headers! The AMS API is very sensitive to these values, and any omission or altered value will likely trigger one of many fairly obtuse error messages.

The next step is to request an access token from AMS. This will allow us to authorize our subsequent requests to AMS. In the MediaServices class, create a method named “InitializeAccessTokenAsync”. The following code will request a token from AMS:

Request an Access Token from AMS

Thanks to the azure-media-services-core SDK created by Shawn Mclean for the code.

In the main Program.cs file, initialize a MediaServices instance and request an access token:

Initialize MediaService instance and request a token

This will require converting the Main program into an asynchronous task. NET Core 2.0 supports asynchronous console-based commands, but the program’s .csproj file must explicitely specify a LangVersion of latest. Your .csproj file may look like this:

Run the project, and you should have an HttpClient that has been authorized with your access token.

Congratulations! You have created a MediaServices class and successfully authenticated with your Azure Media Services instance. At this point, your code should look something like this project.

In Part 2, we will start uploading files to Azure and creating Media Services Assets.

--

--