Archived from groups: alt.comp.periphs.webcam (
More info?)
"Thomas Houseman"
<thomashousemanHADTOPUTTHISHERETOSTOPTHESWENVIRUS@hotmail.com> wrote in
message news:c4ftre$2j269q$2@ID-90831.news.uni-berlin.de...
|
| "Noël" <n03l@REMOVE-hotmail.com> wrote in message
| news:c4e0b8$e6j$1@news.cistron.nl...
| >
| > "Thomas Houseman"
| > <thomashousemanHADTOPUTTHISHERETOSTOPTHESWENVIRUS@hotmail.com> wrote in
| > message news:c4d0ra$2gv4ub$1@ID-90831.news.uni-berlin.de...
| > | Can anyone recommend some webcam software please?
| > | I want to be able to constantly stream my webcam feed and see which IP
| > | addresses are connected to it.
| > | Any suggestions? Freeware / Shareware / Trialware preferred.
| > |
| > | T.
| > |
| > |
| >
| > Give the Windows Media Encoder a go.
| > it's 100% free, real streaming (to the Windows Media Player), and you
can
| > see which IP is connected to it!
| > (you can even do sound if needed)
| >
| > More info @
| >
http://www.microsoft.com/windows/windowsmedia/9series/encoder/default.aspx
| >
| > Want to see it in action? Go and have a look at
http://webcam.kijk.info
| >
| > Noël
| >
| > --
| > www.resize2mail.com | webcam.kijk.info
| >
|
| Ok I've tried this program and it's brilliant - hard to say that about
| Microsoft, but they've excelled themselves this time. However how do I
| code it into a HTML page? Currently using the mms://IPadd
😛ortNo method
to
| view it.
|
| Rgds,
| T,
|
You will need to add the following <object> code to your HTML page:
(not sure if it will showup ok here.. if not, have a look at the code of my
webcam page!)
<object id="NSPlay"
width="336"
height="280"
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.
cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<param name="FileName" value="mms://IPadd
😛ortNo">
<param name="ShowControls" value="0">
<param name="ShowDisplay" value="0">
<param name="ShowStatusBar" value="1">
<param name="AutoSize" value="0">
<embed width = "336"
height = "280"
type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/Me
diaPlayer/"
filename="mms://IPadd
😛ortNo"
showcontrols="0"
showdisplay="0"
showstatusbar="1"
autosize="0">
</embed>
</object>
Make sure you set the param name "FileName" to your IP / port. Same thing
for the "filename="
With "ShowControls", "ShowDisplay", "ShowStatusBar" and "AutoSize" you can
set some extra things!
(0 = off and 1 = on)
Size can be set with "width" and "height"
If you are behind a firewall, you will also need to open the port that you
are using for streaming!
Let me know if you need anymore help!
Noël
--
www.resize2mail.com | webcam.kijk.info