George2
George2

Reputation: 45801

How to embed player into web page?

I want to embed MPC player into web page, any samples?

MPC player I mean => http://sourceforge.net/projects/guliverkli/

Upvotes: 1

Views: 3912

Answers (1)

Srikar Doddi
Srikar Doddi

Reputation: 15609

Here are some widgets..

http://www.ohloh.net/p/mpc-hc/widgets

Are these what you are looking for?

Try this code:

<OBJECT id="VIDEO" width="320" height="240" 
style="position:absolute; left:0;top:0;"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">

<PARAM NAME="URL" VALUE="your file or url">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM name="uiMode" value="none">
<PARAM name="PlayCount" value="9999">
</OBJECT>

Upvotes: 1

Related Questions