java applet for online video conversion and download
Joey Batac
Greenhorn
Joined: Jun 15, 2005
Posts: 7
posted
0
hi everyone,
Im trying to setup a website that can automatically convert my video files to different formats (mp4, 3gp, etc...) online.
This way i would only need to save my videos in one format and then have my users just select the format they want. Then it would be converted automatically while they wait.
This would be similar to that of keepvid.com's online conversion tool. Is this possible for javaapplets?
Thanks in advance
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35256
7
posted
0
If the conversion happens on the server, then I don't see the need for an applet. Uploading the file and selecting an output format can easily be done in an HTML form.
It might be possible, but I would not even begin the work to find out. Just write a normal web application in Java, and upload the video files as the customer has them.
Once on the server, run a conversion program. It doesn't have to even be a Java program, and I'd start with the many open source, cross platform convertors that
already exist.
Be a good, lazy programmer, reuse someone else's debugged and documented code.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: java applet for online video conversion and download