⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 media_realvideo.asp@output=print

📁 W3Schools tutorial..web designing
💻 ASP@OUTPUT=PRINT
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>Object Element - Real Video</title>
 
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />

<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />

<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>

</head>
<body>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

<h1>Playing Real Video Movies</h1>
<a href="media_quicktime.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="media_tagref.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>

<hr />

<p><b>The &lt;object&gt; element can play Real Video movies.</b></p>

<hr />

<h2>The Real Video Format</h2>

<p>The RealVideo format is developed by Real Media. Videos stored in the Real Video format have the extension .rm or .ram.</p>

<p>The format allows streaming of video (on-line video, Internet TV) with low 
bandwidths. Because of the low bandwidth priority, quality is often reduced. </p>

<hr />

<h2>The Solution</h2>

<p>This is the code required to play a Real Video movie:</p>

<table width="100%" border="1" class="ex" cellspacing="0">
<tr><td>
<pre>&lt;object width=&quot;320&quot; height=&quot;240&quot;
classid=&quot;clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA&quot;&gt;
&lt;param name=&quot;controls&quot; value=&quot;ImageWindow&quot; /&gt;
&lt;param name=&quot;autostart&quot; value=&quot;true&quot; /&gt;
&lt;param name=&quot;src&quot; value=&quot;male.ram&quot; /&gt;
&lt;/object&gt;
</pre>
</td></tr>
</table>
<br />
<hr />

<h2>The &lt;object&gt; Element</h2>

<p>The <b>width</b> and <b>height</b> attributes of the object element should 
match the size of the movie in pixels.</p>


<p>The <b>classid</b> attribute uniquely identifies the player software to use. 
It must be set 
to &quot;clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA&quot;. This unique code 
identifies an ActiveX control that must be installed on the users PC before the 
movie can be played. If the user does not have the ActiveX control installed, 
the browser can automatically download and install it. </p>


<p>The <b>param</b> elements supply additional information to the player.</p>


<p>The <b>src</b> parameter should point to the movie (or audio) file.</p>


<p>The <b>autostart</b> parameter should have the value &quot;true&quot; if you want the 
movie to play automatically.</p>


<p>The <b>controls</b> parameter should have the value &quot;ImageWindow&quot; if you 
don't want the control buttons to show, or &quot;All&quot; if you want all the controls to 
show.</p>


<hr />

<h2>Object Reference</h2>
<table class="ex" width="100%" border="1">
  <tr>
    <th align="left" width="25%">Attribute</th>
    <th align="left">Defines</th>
  </tr>
  <tr>
    <td>classid</td>
    <td>A unique id for the object.</td>
  </tr>
  <tr>
    <td>height</td>
    <td>The height of the object in pixels or %.</td>
  </tr>
  <tr>
    <td>width</td>
    <td>The width of the object in pixels or in %.</td>
  </tr>
  </table>
<h2>Parameter Reference</h2>
<table class="ex" width="100%" border="1">
  <tr>
    <th align="left" valign="top" width="25%">Attribute</th>
    <th align="left">Defines</th>
  </tr>
  <tr>
    <td valign="top">src</td>
    <td>The source of a RealAudio or RealVideo clip.</td>
  </tr>
  <tr>
    <td valign="top">controls</td>
    <td>The visibility of the controls. (See below)</td>
  </tr>
  <tr>
    <td valign="top">console</td>
    <td>A console name to link multiple controls.</td>
  </tr>
  <tr>
    <td valign="top">autostart</td>
    <td>Automatic start. (true | false).</td>
  </tr>
  <tr>
    <td valign="top">nolabels</td>
    <td>Suppression of 
    label texts in the controls window.</td>
  </tr>
  <tr>
    <td valign="top">reset</td>
    <td>Resetting the control for  playlist.&nbsp; (true | false).</td>
  </tr>
  <tr>
    <td valign="top">autogotoURL</td>
    <td>How a URL is handled. (true | false)<br />
    True forwards URL 
    event to the browser.<br />
    False uses VBScript event instead.</td>
  </tr>
</table>
<h2>Controls Values</h2>
<table class="ex" width="100%" border="1">
  <tr>
    <th align="left" valign="top" width="25%">Value</th>
    <th align="left">Displays</th>
  </tr>
  <tr>
    <td valign="top">All</td>
    <td>Displays a full player with all controls.</td>
  </tr>
  <tr>
    <td valign="top">InfoVolumePanel</td>
    <td>Title, author, and copyright and volume slider.</td>
  </tr>
  <tr>
    <td valign="top">InfoPanel</td>
    <td>Title, author, and copyright.</td>
  </tr>
  <tr>
    <td valign="top">ControlPanel</td>
    <td>Position slider, play, pause, and stop buttons.</td>
  </tr>
  <tr>
    <td valign="top">StatusPanel</td>
    <td>Messages, current time position, and clip length.</td>
  </tr>
  <tr>
    <td valign="top">PlayButton</td>
    <td>Play and pause buttons.</td>
  </tr>
  <tr>
    <td valign="top">StopButton</td>
    <td>Stop button.</td>
  </tr>
  <tr>
    <td valign="top">VolumeSlider</td>
    <td>Volume slider.</td>
  </tr>
  <tr>
    <td valign="top">PositionField</td>
    <td>Position and clip length.</td>
  </tr>
  <tr>
    <td valign="top">StatusField</td>
    <td>Messages.</td>
  </tr>
  <tr>
    <td valign="top">ImageWindow</td>
    <td>The video image</td>
  </tr>
  <tr>
    <td valign="top">StatusBar</td>
    <td>Status, position and channels.</td>
  </tr>
</table>
<br />

<hr />

<a href="media_quicktime.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="media_tagref.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -