Re: Media Website
- Posted by Lone_EverGreen_Ranger Oct 26, 2011
- 35720 views
Would it be possible to make a multimedia website like youtube with euphoria? Using the available libraries or built in libraries?
The web side, yes. Does Youtube do video processing? I am not sure of video processing libraries in Euphoria. Libraries, however, are not hard to wrap and expose to Euphoria if you know of one written in C.
Jeremy
I see. So I would need a library for video processing, or perhaps write it in another language. Does anyone know of any good video processing libraries or what would be a good language to write a video processing system in? Any suggestions are welcome. I'll do some researching myself as well.
I don't really know if you would need it or not. But, say for example, you want to accept only up to a video resolution of 1024x768 and someone uploads a 1920x1080 video. How will you know? Or how will you convert it? That was my thought. There may be some simple command line programs you could call to do that processing.
Jeremy
Well I'm sure I'll need one to do some video processing. So a library would help with that. I don't think any of the built-in euphoria libraries can handle video processing alone, not without writing a library video processing using the available euphoria libraries. Something along the lines of image.e and graphics.e would be needed and probably a few others. Wrapping a library may be an easier approach.