I am making an application in HTML5 that lets you choose a local video file, then play it using the video tag. The problem is that some of the codecs of the videos are not playable by current browsers (XviD in general, H.264 for Firefox, etc). Is it possible to locally convert the videos to the right codec using JavaScript?
Edit: I probably didn't explain myself correctly, I am making a kind of "Media Player" using HTML5: The user chooses a file, the script reads it using the HTML5 File API and then adds it to a video tag, no server involved. This is why I need JavaScript for this.