BarsMonster, Thank you very much.
The hosting service I'm trying out right now has a /usr/bin/ffmpeg provided.
When users upload a movie through my php page, I just use php to run /usr/bin/ffmpeg [parameters and file name]
Is that how people normally provide video conversion to users?
Main Topics
Browse All Topics





by: BarsMonsterPosted on 2009-11-01 at 01:18:45ID: 25712993
I was working with http://corp.kaltura.com/ - it's not cheap, but it works.
Also, I was doing such system from scratch:
Yes, ffmpeg is good for conversion.
For streaming - you may use nginx - it has an flv streaming plugin, which would limit upload speed to the video bitrate.
To hide flv link - you should pass some id into a player, and it should generate flv URL inside player based on that id. This way video URL would not be shown in HTML.
Hosting is a pain - 1 server could not handle more than 100 users reliable. So, defenetly clustering is necessary.