The required work flow:
- User uploads a video or audio file.
- File is processed by the server (converted to selected video/audio format).
- File stored in the DB.
- On users' request, they will be able to view (or listen) to the files uploaded via embedded player or download the file (in the new converted format).
I think the process is very clear and there is nothing new in it.
Additional requirements:
- Support for most commonly used browsers in the corporate industry (maybe excluding embedded video/audio in IE6). HTML5 support.
- Support all common video formats (mov, wmv, mp4, avi, mpg/mpeg, swf, flv, webm) and audio (mp3, aac, wav, wma).
My questions are:
- Which video format is the best to use? and audio?
- How do I convert to those formats in C# (3rd party DLLs can be used for that feature)?
- How do I embed video or audio using Silverlight or Flash and stream it from the DB?
Any examples will be appreciated too.
I know video and audio will need different processing but since the requirements are similar I decided to put them in one post.