Objekt
Chrischaaan
- html
Hallo
was fehlt in dem object tag weil sich das video nicht abspielt??
<object align="center" data="film.avi" height="120" width="160"></object>
bye,christian.
Hi Chrischaaan,
avi ist kein Streaming-Format, biete es einfach per href zum Download an.
Wenn Du Filme auf Deiner Site anzeigen willst, musst Du ein Streamingfähiges Format nehmen, z.B. Quicktine (läuft in allen Browser mit dem embed-Tag), Asf, wmv, asf, asx, real usw. Guck Dir einfach mal ein Beispiel an, wie es die großen machen, die meisten Fernsehsender bieten Streaming-Formate an, z.B. das ZDF das etwas angestaubte asx-Format, die Einbindung siehst Du unten, beim WDR kannst Du Dir Real angucken usw.
Beispielcode asx-Streaming-Format:
<object id="wmp" width=320 height=240 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" name="wmp" border="0">
<param name='FileName' value='http://195.124.124.77/56/021213_politbarometer_7.asx'>
<param name='ShowControls' value='0'>
<param name='ShowPositionControls' value='0'>
<param name='AutoStart' value='true'>
<PARAM NAME="DisplaySize" VALUE="0">
<embed type="application/x-mplayer2" name="wmp" id="wmp" swliveconnect="true" width="320" height="240" border="0" pluginspage="http://www.microsoft.com/netshow/download/player.htm"
src='http://195.124.124.77/56/021213_politbarometer_7.asx'
ShowControls=0
ShowPositionControls=0
AutoStart=true
DisplaySize=0>
</embed>
</object>
__________________________________
Ende Beispielcode
Viele Grüße
Mathias Bigge