how do file converters work? IE: Making a web application that will convert mp3 to ogg nearly instantly. This has always interested me.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The server has a program installed that does the conversion. The file is accepted, run (possibly with
exec('mp3-to-ogg tmpfile.mp3');or similar), and passed back to be downloaded. It’s quite simple, really, just as long as you have the program installed somewhere on the server where it can be run.