Coder Social home page Coder Social logo

wamediaweb's Introduction

A Windows Azure Media Services explorative sample

This sample is an MVC showcase app for basic functionalities of WAMS. The MVC App relies on a Common library. When you run the application for first time it will ask for your Media Account & Key. These details will be used to initialize the CloudMediaContext and put it into a Session State. There is a global filter that looks after having a valid CloudMediaContext in the Session and if none found, it redirects the user to the page requesting the Media Services Credentials.

WaMedia.Common library architecture.

The WaMedia.Common library constits of both contracts (Interfaces) and their concrete implementations. The idea behid the contracts is to logically separate different operations on the Media Services API.

The application has 6 menu items: [Home] [Assets] [Jobs] [Procs] [Locators] [~ Reset ~]:

  • [Home] - is the main screen with some marketing info
  • [Assets] - the Asset relate screen. Here you can create asset, encode to smooth streaming, protect with play ready, get the smooth streming url, decrypt (if it is decrypted). Please note the following contraints while working with Asset:
  • Only ISO MP4 video Assets can be encoded into Smooth Streaming format (the [encode] link), so first use the [convert to mp4] link, if the asset is not MP4
  • Only Smooth streaming asset can be PlayReady protected! So make sure you execute this over an asset, which is Smooth Streaming encoded
  • You can get the Streaming URL for Smooth Streaming (and Play Ready protected) assets only
  • You can get the mp4 progressive download link for MP4 assets only
  • [Jobs] - the Jobs screen. Here you can view all the jobs with their states and accosiated tasks. You can delete job from this screen
  • [Procs] - a static list of available media processors
  • [Locators] - a static list of locators that are currently created for the media account
  • [~ RESET ~] - resets the whole Media Services account. This includes: deleting all the jobs, deleting all locators, deleting all assets.

UPDATE Added AJAX Upload with progress for creating assets. However, please do note that the creation of an asset is two step process:

  1. User uploads filr to your server (progress can be communicated back)
  2. That file is being uploaded to BLOB storage (progress cannot be communicated back) - an automatic process handled by the CloudMediaContext Because of that, note that even the progress is filled up at 100%, the asset is not yet ready and you have to wait untill full upload of media file to the Blob storage. Also, alhtough the AJAX uploaded may report upload failed, the upload is most probably fine. I am working on implementing the feature of the uploader to correctly report the result.

Following contracts are implemented

IMediaService

Base contract, which is referenced by all others, as it holds reference to the CloudMediaContext. Unfortunatelly the CloudMediaContext does not implement any interface and cannot be abstracted as a Contract. IMediaService has following members

  • CloudMediaContext MediaContext
  • void Reset() - resets the whole Media Service account. Just leaves the Content Keys. Be careful with the content Keys. If you delete them, you will no longer be able to create a non-empty asset!
  • IMediaProcessor GetMediaProcessorByName(string name) - retrieves an instance of media processor, which can later be used to create Tasks

IAssetService

Contract for managing Assets. It has following members

  • IMediaService MediaService - reference to the IMediaService
  • IQueryable Assets - Asset is local model created with the idea to provide additional properties like Thumbnail, but it appeared to be harder to implement thumbnailing, so it is depricated feature for now
  • Asset GetAssetById(string assetId) - As its name suggests, this method retrieves an assed by given ID
  • [Obsolete("Dont use!")] string ThumbnailUrl(IAsset asset);
  • void CreateAsset(string pathToFile) - Creates asset from local filename. So far, this is the only option we have with the current .NET API.
  • void Publish(string assetId) - tries to publish the asset (executing PUBLISH action). Not working on the WAMS so far - the WAMS is having issues publishing the asset
  • void AssignThumbnail(string assetId) - tries to assign thumbnail to an existing asset. Not working (not implemented) due to too much overhead complexity for implementing such a trivial feature
  • [new] void DelteAsset(string assetId) - deletes an Asset. Of course by removing associated locators and content keys first
  • [new] void Rename(string assetId, string new Name) - renames an Asset

IJobService

Contract for managing Media Services Jobs.

  • IMediaService MediaService - reference to the IMediaService
  • IEnumerable Jobs - a list of all Jobs that are registered witht he given Media Services account
  • void CreateEncodeToSmoothStreamingJob(Asset asset, bool decrypt = false) - creates JOB with 2 parallel tasks. First task is to create Smooth Streaming asset. Second task is to Create thumbnails. Note that Smooth Streaming can only be produced of an MP4 asset! The decrypt parameter is used to identify whether to include a storage decryption immediately after converting.
  • void CreateNewJob(Asset asset, string mediaEncoder, string taskPreset) - creates single job with given media encoder name and task preset.
  • void DecryptAsset(Asset theAsset) - executes single task on decrypting a storage encrypted asset
  • void DeleteJob(string jobId) - deletes given job
  • [new] void CancelJob(string jobId) - cancels a job
  • string GetPlayReadyTask(string contentKey = "", string keyId = "", string keySeed = "", string playReadyServerUrl = "") - gets a task preset for PlayReady protection of media

ILocatorService

Contract used to get streaming origins.

  • IMediaService MediaService - reference to the IMediaService
  • string GetSmoothStreamingOriginLocator(Asset assetToStream) - gets smooth streaming origin locator
  • string GetMp4StreamingOriginLocator(Asset assetToStream) - gets progressive download locator with SAS signature

wamediaweb's People

Contributors

astaykov avatar richorama avatar

Watchers

Travis James avatar James Cloos avatar John Livermore avatar Cody Duncan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.