Int�grer un silverlight player dans une page web
Salut,
J'ai int�grer un lecteur silverlight dans ma page web. Il marche tr�s bien en local.
Mais sur le web, le lecteur n'appara�t pas.
voici le code de mon lecteur:
Code :
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 28 29 30 31 32 33 34 35 36 37 38
| <object data="data:application/x-silverlight-2" type="application/x-silverlight-2" width="640" height="480">
<param name="source" value="video/ArchetypeTemplate.xap"/>
<param name="background" value="white" />
<param name="minRuntimeVersion" value="3.0.40624.0" />
<param name="autoUpgrade" value="true" />
<param name="enableHtmlAccess" value="true" />
<param name="enableGPUAcceleration" value="true" />
<param name="initparams" value='playerSettings =
<Playlist>
<AutoLoad>true</AutoLoad>
<AutoPlay>true</AutoPlay>
<DisplayTimeCode>false</DisplayTimeCode>
<EnableCachedComposition>true</EnableCachedComposition>
<EnableCaptions>true</EnableCaptions>
<EnableOffline>true</EnableOffline>
<EnablePopOut>true</EnablePopOut>
<StartMuted>false</StartMuted>
<StretchMode>None</StretchMode>
<Items>
<PlaylistItem>
<AudioCodec>WmaProfessional</AudioCodec>
<Description></Description>
<FileSize>21599421</FileSize>
<FrameRate>15.0000375000938</FrameRate>
<Height>480</Height>
<IsAdaptiveStreaming>false</IsAdaptiveStreaming>
<MediaSource>video/studio2-et-installation.wmv</MediaSource>
<ThumbSource></ThumbSource>
<Title></Title>
<VideoCodec>VC1</VideoCodec>
<Width>640</Width>
</PlaylistItem>
</Items>
</Playlist>'/>
<a href="http://go2.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
<img src="http://go2.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none;"/>
</a>
</object> |
Je voix pas ou est le probl�me pour que �a ne marche pas.