Hmmm... seems interesting..
How to upload video?
Well it depends.
- If you are using a thick client (aka swing or swt) then you can use
Apache Commons File Uplaod API.
- For JSP http://www.roseindia.net/jsp/file_upload/index.shtml
- With JSF - (http://balusc.blogspot.com/2008/02/uploading-files-with-jsf.html and http://onjava.com/pub/a/onjava/2005/07/13/jsfupload.html)
- With AJAX - http://www.openjs.com/articles/ajax/ajax_file_upload/ (basic example but enough to guide in right direction :))
what concepts i have to learn?
- As a library integrator you will need to know about the front end technology you are going to use (JSF, JSP or PHP etc)
- You should know about basic of multimedia handling in java (sometimes help in debugging)
- Basic of flash video (specially how streaming works in internet video http://blog.xuggle.com/2009/01/23/overly-simplistic-guide-to-internet-video/ )
- Assuming you already know about servlets etc.
- Have a look at HTML5. It has some great offerings like video playback etc.
what are all the libraries i may
require?
Again depends
- IF choosing javascript for front end + AJAX in mind http://jqueryui.com/ or http://jquery.com/
- IF JSF is the choice for front end - http://www.jboss.org/richfaces or http://www.primefaces.org/ along with
JSTL etc
- You will need a library like http://www.xuggle.com/xuggler/
Xuggler is the easy way to uncompress,
modify, and re-compress any media file
(or stream) from Java. Xuggler is
available under the GNU Lesser General
Public License.
Most of the Flash video sites either use xuggler or FFMpeg for conversion and playback.
How to convert it into flash format?
Use Xuggler http://www.xuggle.com/xuggler/. It uses the FFMpeg http://www.ffmpeg.org/. Though you have to use at server side for conversion (As of now you can not use it in applet). Refer to http://wiki.xuggle.com/Tutorials for more information.
How to stream it back to user?
I normally do it in this fasion.
<embed height="385" width="640" type="application/x-shockwave-flash" src="http://s.ytimg.com/yt/swf/watch_as3-vflofTU0v.swf" id="movie_player" flashvars="rv.7.length_seconds=107&rv.2.thumbnailUrl=http%3A%2F%2Fi4....." allowscriptaccess="always" allowfullscreen="true" bgcolor="#000000">
I hope it will help you :)