currently I'm streaming video via embedding it as .wmv
(as can be seen here)
What's the best way to embed it?
Apparently some computers cant load this video.
What's the most universally accepted method where macs, and win can view same.
+ Reply to Thread
Results 1 to 17 of 17
-
-
a vcd in mpg format.
Or divx.Donatello - The Shredder? Michelangelo - Maybe all that hardware is for making coleslaw? -
mpg format? is that something to be exported from premiere? any guides for best way to do it.
simly embed it in the page in the same manner or is there a better way to throw it in there. -
Try this:
Code:<OBJECT ID="MediaPlayer1" width=xxx height=xxx classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <PARAM NAME="filename" VALUE="YOUR FILE NAME HERE"> <PARAM NAME="animationatStart" VALUE="true"> <PARAM NAME="transparentatStart" VALUE="true"> <PARAM NAME="autoStart" VALUE="true"> <PARAM NAME="showControls" VALUE="true"> <EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="YOUR FILE NAME HERE" width=xxx height=xxx AutoStart=true> </EMBED> </OBJECT>
That's more of a coding issue than a machine issue. The object and embed tags do the same thing but for different bowsers. Embed is for IE, object is for FF. It's the same for flash animations.
The best thing to do is provide an alternative link directly to the file.
As far as machine compatibility most will play a WMV, the only other real alternative is mpeg1 but at the expense of file size and quality. -
coaman, the code you provided looks pretty much like the code I already am using.
I'm just getting some complaints that some can't see it (like older computer or macs).
Is there any more universal way?
I guess eventually I better move to flash. -
Originally Posted by willstein
I'm just getting some complaints that some can't see it (like older computer or macs).
Your dealing with two issues 1. Is there browser compatible with the code? and 2. Do they have the software/codecs to play the file? If the answer to either of them is no then it's not going to work.
I wouldn't suggest flash as an alternative, that too requires that it be installed. -
Hmm.
I tried this:
Code:The following video may take a few minutes to load on your computer. Please be patient. Filmed: October 22nd, 2005 [12 minutes, 44 seconds] [21.8 MB] Double Click to View Full Size <OBJECT ID="MediaPlayer1" width=320 height=300 classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <PARAM NAME="../images/video/lwilson/lwilson.wmv" VALUE="../images/video/lwilson/lwilson.wmv"> <PARAM NAME="animationatStart" VALUE="true"> <PARAM NAME="transparentatStart" VALUE="true"> <PARAM NAME="autoStart" VALUE="true"> <PARAM NAME="loop" VALUE="false"> <PARAM NAME="showControls" VALUE="true"> <EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="../images/video/lwilson/lwilson.wmv" width=320 height=300 AutoStart=true> </EMBED> </OBJECT> Video Not Working? Download Video Here
And I got the following output:
Code:classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> --nonworkingplayer-- --nonworkingplayer-- --nonworkingplayer-- --nonworkingplayer-- SRC="../images/video/lwilson/lwilson.wmv" width=320 height=300 AutoStart=true>
-
Code:
<PARAM NAME="../images/video/lwilson/lwilson.wmv" VALUE="../images/video/lwilson/lwilson.wmv">
Code:<PARAM NAME="filename" VALUE="../images/video/lwilson/lwilson.wmv">
-
Using the following code:
Code:The following video may take a few minutes to load on your computer. Please be patient. Filmed: October 23rd, 2005 [7 minutes, 55 seconds] [13.5 MB] Double Click to View Full Size <OBJECT ID="MediaPlayer1" width=320 height=300 classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <PARAM NAME="filename" VALUE="../images/video/ynishi/ynishi.wmv"> <PARAM NAME="animationatStart" VALUE="true"> <PARAM NAME="transparentatStart" VALUE="true"> <PARAM NAME="autoStart" VALUE="true"> <PARAM NAME="loop" VALUE="false"> <PARAM NAME="showControls" VALUE="true"> <EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="../images/video/ynishi/ynishi.wmv" width=320 height=300 AutoStart=true> </EMBED> </OBJECT> Video Not Working? Download Video Here
edit: I added:
Code:<PARAM NAME="loop" VALUE="false">
-
I just tried it here and it works perfectly, the only thing I changed is the source URL for the video from the code you pasted above.
http://www.nepadigital.com/test.html
It's the exact same code. It works in both IE and firefox as tested by me and probably many others. I don't know what to tell you but you can look around the net and find that sippet of code everywhere, it's the most widely used since it works in practically every browser. -
I tried
in both firefox and IE and it crashed my browser...
can a third person try them out for me? -
Originally Posted by ybeard
Scott -
Originally Posted by Cornucopia
-
Originally Posted by willstein
Buncha comedians.....
Jim - though the same thing, actually -
hahahah im SURE that came from always logging on to steam to play counterstrike..
hmm.
ANYWAY!!!!
I'm getting alot of complaints that the video cant be viewd on different machines.
one user complains that audio comes through, but video is only a blank green screen.
could that lead anywhere? -
The file seems to be ok, but I had trouble with the embedding.
Looked at the source code for the page, copied the path to the clip, pasted in the address and it played fine.
Note: Audio WMA v9.1 (not all users have the .1 update)
Video WMV v8 (why not use v9, it looks so much better?)
The "ROACXplayer" (spelling from memory??) is a nonstandard name...
There are other methods to embed/link, maybe you should try one of those.
Scott