Live Chat with Operator
Home >  ASP.NET Video Publishing Script >  Usage Guide

ASP.NET Video & Audio User Control Usage Guide

Asp.net video and audio uploader user control usage guide provide different ways to implement video uploader in your existing asp.net, c# and vb.net web application.

You can implement video uploader user control just by dragging it on asp.net page where you want to integrate video uploading and publishing approach.

Below examples will provide you information how easy is to integrating video uploader component in your asp.net solution.

Settings:

Before proceeding to video uploader implmentation, you must first setup different level of settings. List of setting areas include

  1. Path Settings: This section will provide properties to set various paths used within encoder for video processings. e.g source and destination video path settings.
  2. Cloud Storage Settings: If you want to enable cloud storage, you must set all mentioned settings.
  3. Encoder Settings: It is related to publishing videos to different levels and formats. Lots of builtin settings available. more detail

Example No 1:

This example will set basic video uploader with all default processing options

<uc1:upload ID="upload1" runat="server" />

Example No 2:

This example will set basic video uploader with custom settings

<uc1:upload ID="upload1" Type="0" VideoExtensions=".mp4,.wmv,.avi" MaxVideoSize="100" EnableCloudStorage="false" SuccessMessage="Video has been published successfully" runat="server" />

Where

  • Type: type of media file, 0: video, 1 audio.
  • VideoExtensions: list of allowable video extensions.
  • MaxVideoSize: maximum allowable video file size in "MB".
  • EnableCloudStorage: enable, disable video and audio storage on cloud. If enabled you must set cloud settings.
  • SuccessMessage: message appear once all processing completed successfully.

Encoding Guides:

With new video uploader and encoding script you can publish single video to multi level (240p, 360p etc) and multi format (flv, wmv, mp4, mp3, webm etc) list of videos and audio files in one step. In order to achive this video uploader introduce youtube style "itag" value for each unique type of video settings. For more detail about "itag" and their settings click here. There are lots of builtin media encoding settings available, you can add more and more settings based on your requirements.

How to encode single video in multiple video and audio formats?

You can pass arraylist of values through video encoder script "itags" property. e.g if you want to publish single video into

  • 360p mp4 format
  • mp3 audio format

then you will add itag values within arraylist object and pass it to video encoder as shown below.

 ArrayList itags= new ArrayList();
 itags.Add("5"); // 360p mp4 encoding
 itags.Add("14"); // mp3 audio encoding
 encoder.iTags = itags;

ASP.NET Video Uploader User Control:

  1. Main Section
  2. Documentation

ASP.NET Video Encoding Script:

  1. Documentation
  2. Encoding Settings
  3. Example Codes
  4. Error Codes
© 2007 - 2012, mediasoftpro.com  | Site Map | Privacy Policy | Terms of Use