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
Example No 1:
This example will set basic video uploader with all default processing options
Example No 2:
This example will set basic video uploader with custom settings
Where
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
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:
ASP.NET Video Encoding Script: