streaming video in PHP5

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • momogi
    New Member
    • Sep 2007
    • 28

    streaming video in PHP5

    hi all.. I wanna make a site where every visitors can see a streaming video (in real time, may be like youtube). So, in the same time when the page is loading, the video is playing.
    My questions, is it possible to make this streaming video using PHP5? Or I have to learn another language? Does PHP support this?
    I don't know where to start this project... Do I have to make some kind of video player in this site?
    thanks for your help...
  • pbmods
    Recognized Expert Expert
    • Apr 2007
    • 5821

    #2
    Heya, Momogi.

    This is not really PHP's domain, as PHP never directly interacts with the client. Instead, you'll want to create or find a Flash-based video streamer. I hear that the Quicktime component can also handle streaming media, but the Flash version is generally considered to be more universally-compatible.

    Comment

    • realin
      Contributor
      • Feb 2007
      • 254

      #3
      There are many ready made video players which let u stream flv files just like in the case of youtube..

      the flash player is installed by default in the browser using a plugin(automati cally downloaded)

      you just need to embed a code using
      [HTML]
      <object width="550" height="400">
      <param name="movie" value="somefile name.swf">
      <embed src="somefilena me.swf" width="550" height="400">
      </embed>
      </object>
      [/HTML]

      more of this is Here

      Comment

      Working...