File Converters. How do they work? [closed]

耗尽温柔 提交于 2020-01-17 08:38:12

问题


how do file converters work? IE: Making a web application that will convert mp3 to ogg nearly instantly. This has always interested me.


回答1:


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.



来源:https://stackoverflow.com/questions/9145341/file-converters-how-do-they-work

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!