A couple of days ago I created a console application that showed the results of operations were completed. After a few hours I realized that the information was becoming more and more and it was very difficult to read directly…
Posts tagged .NET
Testing command line parameters in a console application with Visual Studio
I’m preparing a more interesting article than this, tidying up the code, removing the hardcoding, so when I’ve doubts about how to add arguments in order to test my application and a new console project always asks me. True story:…
Ingest files in bulk on Azure Media Services
I’ve spent a lot of time talking about Azure Media Services, attempting to show step by step how to get started in the media world through the Microsoft solution. It is true that many times we are dealing with new…
Azure Media Services: Modify Streaming Reserved Units from .NET
In order to automate the reserved units for the streaming service, we can use the following code in C#: It’s available an async method for this action as well: ScaleAsync. This is an example to use it: Also, If we…
Create a channel for live streaming from Azure Media Services SDK for .NET
Yesterday I talked about the new preview for Live Streaming in Azure Media Services. As we saw is quite easy to create channels from the portal, but there are situations where we need to make this process automatic and configurable…
Upload a video to Youtube from .NET
Last week I was researching on how to upload videos to my Youtube account from NET. Basically all I need is a new project in Google Developers and the following code: The first thing we need are Google.Apis and Google.Apis.YouTube.v3…
Clean an Azure Media Services account from .NET
When we are developing, a method that you cannot forget is one to remove all assets, locators, jobs and access policies that we have accumulated after extensive testing. The truth is it’s very simple, since we only go every list…
Create thumbnails for an asset in Microsoft Azure Media Services
When we’re working with media we have to know a very important feature: creating thumbnails because It will be easy for us to recognize the content of the video. Within Microsoft Azure Media Services we can create these images through…
Windows Azure Media Services .NET SDK Extensions
When we work with Windows Azure Media Services .NET SDK we can perform all the tasks available from the portal: Upload content, encode assets, dynamic packaging and publish assets. To help in these tasks is one additional library called WindowsAzure.MediaServices.Extensions,…
Publishing assets with Windows Azure Media Services SDK for .NET
The last step we need to perform when working with Microsoft Azure Media Services is the publication of the final assets, in order that they can be consumed by users. From the Microsoft Azure portal, we can do this through…
Encrypt with PlayReady in Microsoft Azure Media Services
Another thing we can do with Microsoft Azure Media Services, in addition to ingest content, encoding and dynamic packaging already seen, is encryption using an external PlayReady server. In this post we will use Microsoft PlayReady Test Server. PlayReady protection…
Encoding assets in Microsoft Azure Media Services from .NET
Another task that provides Azure Media Services is encoding the assets we have in our account. As I said in the introductory post, it is possible to perform this task through the portal itself, using the bottom menu (ENCODE): We…