I am a web designer freelance and a rookie tech A+ who is seeking a solution to imbed WMP into the web site, which I have done successfully; however, I want to play one movie right behind the other in the same player. Isn't there a way to create a playlist using WMP. ** I have embedded the player a milion times, but would like several movies to play back to back on same player.
Or an alternative, know light Flash, and Photoshop. Any suggestions. Thanks in advance. I have searched high and low for this. I have read about "playlist. mU3, my formats are converted to the smaller ".wmv" type.
You need to use an M3U Playlist. Here's how it works: you upload the WMV files you want to put in the playlist into a folder via FTP or whatever you're using. Then you create an M3U playlist; an M3U playlist is simply a small file containing paths to the files that you wish to play, in the order in which you want them played. Then in the code for the embedded WMP instead of linking to an WMV file like you would do to play a single video, you now link to the M3U playlist.
So you were a little confused about this judging from your statement:
I have read about "playlist. mU3, my formats are converted to the smaller ".wmv" type.
You basically still use WMV; M3U is just a file that forms the playlist by containing the paths to the WMV files.
Hello,
I need to do the videos run in IE created buttons, but I can not push forward and backward In IE. And i can not also do run on Firefox and Safari with Mac OS 11.
Do you help me?
My code is:
<script>
if (-1 != navigator.userAgent.indexO
{
document.write ('<BR>');
document.write ('<table width="0" border="0" align="left" cellpadding="0" cellspacing="0">');
document.write ('<tr>');
document.write ('<td>');
document.write ('<object id="WMP" classid="clsid:6BF52A52-39
document.write ('<param name="url" value="hhttp://midia.com.x
document.write ('<param name="stretchToFit" value="true">');
document.write ('<param name="uiMode" value="mini">');
document.write ('<param name="AutoStart" value="true">');
document.write ('<param name="ShowControls" value="true">');
document.write ('<param name="Volume" value="70">');
document.write ('</object>');
document.write ('</td>');
document.write ('</tr>');
document.write ('</table>');
}
</script>
<script>
if(-1 != navigator.userAgent.indexO
{
document.write ('<table width="0" border="0" align="left" cellpadding="0" cellspacing="0">');
document.write ('<tr>');
document.write ('<object id="WMP" classid="clsid:6BF52A52-39
document.write ('<param name="Name" value="WMP1">');
document.write ('<param name="url" value="http://midia.com.xx
document.write ('<param name="UiMode" value="none">');
document.write ('<param name="StretchToFit" value="true">');
document.write ('<param name="AutoStart" value="true">');
document.write ('<param name="CurrentPosition" value="true">');
document.write ('<param name="ShowControls" value="true">');
document.write ('<param name="Volume" value="70">');
document.write ('</object>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" id=\"cmdStandAlone\" src=\"/templates/htm/xxxdi
document.write ('<td><img src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('<td><input type=\"image\" src=\"/templates/htm/xxxdi
document.write ('</tr>');
document.write ('</table>');
}
else if(-1 != navigator.userAgent.indexO
{
document.write ('<BR>');
document.write ('<table width="0" border="0" align="left" cellpadding="0" cellspacing="0">');
document.write ('<tr>');
document.write ('<td>');
document.write ('<object id="WMP" classid="clsid:6BF52A52-39
document.write ('<param name="url" value="http://midia.com.xx
document.write ('<param name="stretchToFit" value="true">');
document.write ('<param name="uiMode" value="mini">');
document.write ('<param name="AutoStart" value="true">');
document.write ('<param name="ShowControls" value="true">');
document.write ('<param name="Volume" value="70">');
document.write ('</object>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>
}
</script>
</center>
</div>
</body>
</DIV>
<script language="JavaScript">
<!--
var Player = document.getElementById('W
var WMState = new Array();
WMState[0] = "Undefined";
WMState[1] = "Stopped";
WMState[2] = "Paused";
WMState[3] = "Playing";
WMState[4] = "Scan Forward";
WMState[5] = "Scan Reverse";
WMState[6] = "Buffering...";
WMState[7] = "Waiting";
WMState[8] = "Media Ended";
WMState[9] = "Transitioning";
WMState[10] = "Ready";
WMState[11] = "Reconnecting";
function Status ()
{
x = Player.playState;
alert("Windows Media Player is " + WMState[x] + "\r\r" + "Player Version:" + Player.versionInfo);
}
function Play ()
{
x = Player.playState;
if (x == 2)
{
Player.controls.play();
}
else
if (x == 3)
{
Player.controls.pause();
}
else
{
Player.URL = "http://midia.com.xxx-rio.
Player.AutoStart = true;
}
}
function Stop ()
{
Player.controls.stop();
}
function Rew()
{
y = Player.controls.currentPos
Player.controls.currentPos
}
function Ffwd()
{
y = Player.controls.currentPos
Player.controls.currentPos
}
function VolumeUp ()
{
X = Player.settings.volume;
Player.settings.volume = X + 10;
}
function VolumeDown ()
{
X = Player.settings.volume;
Player.settings.volume = X - 10;
}
</script>
Thanks,
lffaro.