views:

258

answers:

2

Hi,

I've received a request asking if it's possible to stream live video to a web site. The person requesting this has a notebook running MacOS, a professional camera that can be connected up using Firewire and a web site with PHP/MySQL.

What solutions exist to stream the video out on the Internet and, if practical, what would be necessary to display the live video on a web page in programming terms ?

Edit: There are these topics on stackoverflow but I'm not sure if they're relevant:
http://stackoverflow.com/questions/223983/live-video-streaming-with-php
http://stackoverflow.com/questions/341223/how-do-i-stream-live-video

There is also this page over at apple.com:
http://www.apple.com/quicktime/tutorials/delivery.html

+2  A: 

top of my head, VLC Media Player. It has the ability to stream Live Video from a given capture device. There is a how to guide here.

One shortcoming I noticed is the end user must have VLC installed as well. But I am sure there is a way around it with enough research.

bushman
Apparently VLC can act as a streaming server (see diagram on the apple page). That leaves the question of whether it's possible to relay the stream to a web site and diffuse it as you would with a stream from a webcam.
James P.
A: 

After some searching, it appears that the solution might be as simple as entering some html markup to point a player to the streaming server. I'm still unsure of this, however, and some tests will need to be carried out.

James P.