vote up 0 vote down star

I am trying to build a web which broadcast video. For that I chose Silverlight as player. But I dont know how to load the silverlight player. I searched in google but nothing helps me. Please give me suggestions. Any help will be appreciated.

flag

55% accept rate
It's all client-side - it is server-agnostic. It "just works". – Jeff Wilcox Sep 4 at 6:56

1 Answer

vote up 1 vote down

Can be as easy as

<?php
// some code here
?>
<object id="SilverlightMediaPlayer"
  type="application/x-silverlight-2"
  data="data:application/x-silverlight-2," autoupdate="true"
  style="width: 400px; height: 300px;"
>
  <param name="MinRuntimeVersion" value="2.0.31005.0"/>
  <param name="Source" value="<?php echo $url_videodata; ?>" />
  <param name="windowless" value="true" />
</object>

PHP itself doesn't care (much) about what you print/output to the client. You "just" have to send something that the client will parse and interpret the way you want it.

link|flag
whether i have to include anything????? @VolterK – Rajasekar Sep 4 at 6:56
No, php really, really doesn't care about silverlight at all. It makes no difference to php whether you send 'Mary had a little lamb' or '<object type="application/x-silverlight-2" .... </object>' – VolkerK Sep 4 at 7:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.