Jump to content

Running .wmv In Fullscreen


TheDutchBeast

Recommended Posts

Dear PHP freaks,

At this moment I am busy for my company to make a system that will run without human input.

You define a video and run it on fullscreen, that is on a big 32" lcd screen.

The problem is, I have my video working, but it just won't run in fullscreen automatically, whatever I try to do.

I am using IE 8.

This is my code;

 

<html>

<head>

<title>

Play video in fullscreen

</title>

</head>

<body>

<embed type="application/x-mplayer2"

pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"

name="mediaplayer1"

ShowStatusBar="true"

EnableContextMenu="true"

autostart="true"

width="320"

height="240"

loop="true"

fullscreen="true"

src="dave.wmv" />

</body>

</html>

 

Its so simple, yet is does not work, and it is driving me insane these last couple of days.

Since fullscreen = "true" it should work.

 

Some help would me highly appreciated!

 

Greetings from The Netherlands and thanks in advance

 

Dave

video4.php

Link to comment
https://forums.phpfreaks.com/topic/269669-running-wmv-in-fullscreen/
Share on other sites

But that does not mean i run it fullscreen, it will still show the IE interface.

If i double click the fullscreen button, it runs fullscreen, but i want that to happen automatically...

Which seems to be possible, but not working at this moment

 

Thanks for your reply!

I've got an update!

I changed my code to this:

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

<PARAM NAME="URL" VALUE="dave.wmv">

<PARAM NAME="enabled" VALUE="True">

<PARAM NAME="AutoStart" VALUE="False">

<PARAM name="PlayCount" value="3">

<PARAM name="Volume" value="50">

<PARAM NAME="balance" VALUE="0">

<PARAM NAME="Rate" VALUE="1.0">

<PARAM NAME="Mute" VALUE="False">

<PARAM NAME="fullScreen" VALUE="True">

<PARAM name="uiMode" value="full">

</OBJECT>

 

WHen I press the play button now, it goes into perfectly fullscreen.

Now the question is, hoe can I let it play automatically, without having to press play?

 

Greetings!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.