windows Mediaplayer geïntegreed in webpage

Pagina: 1
Acties:

  • r0el
  • Registratie: November 2001
  • Niet online
Nu ik een webcam heb kan ik al streamen mbv Windows Media Encoder (http://ip:8080) Nu ben ik op zoek naar de html-codes om zo'n 'embedded' mediaplayer op een website. de search gebruikt, niets gevonden (of niet met de goeie woorden gezocht :?) Anyway; heeft iemand een link naar of de html-code van zo'n player?

Verwijderd

SCRIPT REQUEST!!!!!!!! :P
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script language="VBScript">
<!--
On Error Resume Next
lngMP70 = IsObject(CreateObject("WMPlayer.OCX"))

' Windows Media Player 7 Code
If (lngMP70) Then
    document.write "<OBJECT ID=MediaPlayer CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6 standby=""Loading Microsoft Windows Media Player components..."" TYPE=""application/x-oleobject"">"
    document.write "<PARAM NAME=""url"" VALUE=""http://mijn.webcam.com:8080"">"
    document.write "<PARAM NAME=""AutoStart"" VALUE=""true"">"
    document.write "<PARAM NAME=""ShowControls"" VALUE=""1"">"
    document.write "<PARAM NAME=""uiMode"" VALUE=""mini"">"
    document.write "</OBJECT>"

' Windows Media Player 6.4 Code
Else
    document.write "<OBJECT ID=MediaPlayer CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"
    document.write " standby=""Loading Microsoft Windows Media Player components..."" "
    document.write " TYPE=""application/x-oleobject"">"
    document.write "<PARAM NAME=""FileName"" VALUE=""http://mijn.webcam.com:8080"">"
    document.write "<PARAM NAME=""AutoStart"" VALUE=""true"">"
    document.write "<PARAM NAME=""ShowControls"" VALUE=""1"">"
    document.write "</OBJECT>"
End If

-->
</script>

:)