1

we need to implement a media/video streaming solution on Linux, a-la youTube but for our internal use. Any decent open source tools for this?

man0war
  • 11
  • 1

3 Answers3

1

If you need a streaming server, you can use Darwin Streaming Server

Khaled
  • 36,533
  • 8
  • 72
  • 99
0

Yes, there's lots. Have a google for progressive download video php. There's a free player and code samples here.

You'll also need something like ffmpeg for manipulating the video files

symcbean
  • 21,009
  • 1
  • 31
  • 52
  • If you're going to deliver progressive download, just use the base HTTP Server. The only time you should consider an application server is if you needed some sort of access control and even then there's better ways. – MyItchyChin Apr 20 '12 at 14:45
0

Red5 has some nice streaming features, check it out.

The Unix Janitor
  • 2,458
  • 15
  • 13