| Pre-Requisites of Media Manager Pro Component |
|
.Net Framework
|
Media Manager Pro needs .Net Framework 1.1, 2.0, 3.0 or later installed on your machine. |
| |
|
FFMPEG
|
You need to keep FFMPEG files in a folder “FFMPEG”. Keep all your ffmpeg files in a in a single folder. You can download the working sample application from below locations which have the recommended version of FFMPEG included.
To download C# sample application: http://www.all4dotnet.com/csharpsample.aspx
To download VB.Net sample application: http://www.all4dotnet.com/vbsample.aspx |
| |
|
FLVTOOL
|
It is only used if you want to convert your videos in FLV format. Download FLV tool2 from here and keep all of its files in a single folder at root of your project. |
| |
|
Write Permissions
|
Give read-write permission to the folders where your videos will be stored. |
| |
|
Execute Permissions
|
Give execute permissions to the FFMPEG and FLVTOOL |
| |
|
Maximum File Upload Size
|
By default, ASP.Net doesn’t allow upload of videos greater than 4 MB in size. If you want to allow videos of size more than 4 MB, you need to increase the allowed file size limit in your application’s web.config file. So if for example you want to allow file upload up to 20 MB, set the value of ‘maxRequestLength’ property of 'httpruntime' to 20480. this value is specified in KB. To best set you configuration, you can just copy and paste all the properties from the sample below.
<httpRuntime maxRequestLength="20480" enableKernelOutputCache="true" executionTimeout="120"
apartmentThreading="false" requireRootedSaveAsPath="true" requestLengthDiskThreshold="80"
useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4"
appRequestQueueLimit="5000" enableVersionHeader="true" shutdownTimeout="100"
delayNotificationTimeout="6" waitChangeNotification="0" maxWaitChangeNotification="0"
enableHeaderChecking="true" sendCacheControlHeader="true" enable="true"/>
|
| |
|
Set Meta-Information for FLV Videos
|
you can set various Meta information for FLV videos. This Meta information is required for flash players to perform various operations while playing the video on web such as play, pause, fast forward, fast backward etc. Learn more |
| |
|
Full Trust Level
|
While using Media Manager Pro, it needs Full Trust Level to be set in machine.config file if you are using Asp.Net 2.0 or later. However, this configuration is already set on local systems not necessarily set on production server. Generally shared hosting plans doesn’t support full trust level configuration and you need to ask the hosting provider for it. Below are some reccemonded hosting providers:

|
| |
|
FLV Streaming in Windows Server 2003
|
If you want to stream Flash FLV videos on Windows 2003 Server, you must add some mime-type as by default Windows 2003 Server not allow Flash FLV Streaming, more detail available below. Setting FLV Video Streaming on Windows 2003 Server Microsoft Windows 2003 Server, by default doesn’t allow FLV streaming. If you want to stream FLV videos in Microsoft Windows 2003 server, you need to do some changes in IIS to allow streaming of FLV videos. You can check the further details on how to do this at the following URL. http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19439&sliceId=1 |
| |