Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8950133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:22:57+00:00 2026-06-15T13:22:57+00:00

After my encoding Azure task is done, I have a bunch of ISMV/ISMA files

  • 0

After my encoding Azure task is done, I have a bunch of ISMV/ISMA files stored onto Azure blob. Now I want them to be available for Smooth Streaming.
How can I do that?

The articles I found in Internet say how to upload ISMV files from local PC onto Azure using Adaptive Streaming Azure utility.
But my files are already on an Azure storage and I don’t want to download them and upload again.

Could anyone please advise?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:22:59+00:00Added an answer on June 15, 2026 at 1:22 pm

    The very detailed and technically accurate How to: Deliver Streaming Content will give you a crystal clear idea what to do in order to deliver the Smooth Streams to your users.

    Other than that, you can also explore the Readme and Code in the WaMediaWeb project:

        public string GetSmoothStreamingOriginLocator(Models.Asset assetToStream)
        {
            // Get a reference to the manifest file from the collection 
            // of streaming files in the asset. 
            var manifestFile = assetToStream.MediaAsset.AssetFiles.Where(x => x.Name.EndsWith(".ism")).FirstOrDefault();
            // Cast the reference to a true IFileInfo type. 
            if (null == manifestFile)
            {
                return null;
            }
    
    
            // Create an 1-day readonly access policy. 
            IAccessPolicy streamingPolicy = this.MediaService.MediaContext.AccessPolicies.Create("Streaming policy",
                TimeSpan.FromDays(1),
                AccessPermissions.Read);
    
    
            // Create the origin locator. Set the start time as 5 minutes 
            // before the present so that the locator can be accessed immediately 
            // if there is clock skew between the client and server.
            ILocator originLocator =
                (from l in this.MediaService.MediaContext.Locators
                 where l.AssetId.Equals(assetToStream.MediaAsset.Id)
                 select l).FirstOrDefault();
    
    
            if (originLocator == null)
            {
                originLocator = this.MediaService.MediaContext
                    .Locators.CreateLocator(LocatorType.OnDemandOrigin, assetToStream.MediaAsset,
                 streamingPolicy,
                 DateTime.UtcNow.AddMinutes(-5));
            }
            // Create a full URL to the manifest file. Use this for playback
            // in streaming media clients. 
            string urlForClientStreaming = originLocator.Path + manifestFile.Name + "/manifest";
    
    
            // Display the full URL to the streaming manifest file.
            Console.WriteLine("URL to manifest for client streaming: ");
            Console.WriteLine(urlForClientStreaming);
    
    
            return urlForClientStreaming;
        }
    

    UPDATE

    CDN is not currently supported in Azure Media Services. There used to be an AzureCdnOriginlocator in the previous SDK/API, but that is now removed. So with current public preview state of Azure Media Services you can’t use CDN. You can only use the OnDemandOrigin Locator for smooth streaming.

    You also have the option to get a SAS locator. However you can’t use the SAS Locator for smooth streams, because it will just give you access to the manifest and not the rest of the files (different bitrate chunks) on the storage account.

    UPDATE 2

    Mine code on github is up-to-date with the latest (to date) API and SDK.

    UPDATE 3

    I was in mistake! Just discovered something about the CDN. So, the documentation on How to: Enable CDN is correct, but a bit incomplete.

    Follow the steps described in that How To. Once you activate your Media Services Account for CDN, through the manual process described, you will be able to use your CDN Endpoint.

    Having said that, OnDemandOrigin locator will result into something like:

    http://wamsamsreg001orig-hs.cloudapp.net/7f98142c-b513-40be-8d3c-5bf73fe442bb/2012-10-12-320.ism/manifest

    You have to replace the wamsamsreg001orig-hs.cloudapp.net with your Azure CDN endpoint, which would be something like az02930.vo.msecnd.net and get that new URL for the streaming manifest:

    http://az02930.vo.msecnd.net/7f98142c-b513-40be-8d3c-5bf73fe442bb/2012-10-12-320.ism/manifest

    Hope it is a bit clear. You can’t the CDN automatically via the API and/or SDK, you have to do manual string manipulation and you have to know your CDN endpoint.

    It is something new for me also. I have to update my code – the part with providing the CDN.

    Also, please pay attention that Locators are not immediately available when they are created. It is about 30-40 seconds after creation when the locator will be available.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a binary string that I am encoding in Base 64. Now, I
After deploying WCF server (svc) on my Server, I have got this message when
After autheticating my user, I want to put a reference in the session to
I want to decode my string. I have used parsing and get a string
Ruby. Shoes. DataMapper. After an encoding error I get 'failed to build native extensions'.
I am trying to loop through a set of javascript files, detect their encoding
I'm struggling with a weird Azure problem after disabling remote desktop connections. I started
I have an ASMX webservice setup on Microsoft Azure and I'm trying to send
For example, say I have the following xml in a string: <?xml version=1.0 encoding=UTF-8?>
I tried with @Assert\MinLength but it seems to check after encoding the password when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.