| |
|
|
| Apply • Schedule • Register
|
Austin Community College
5930 Middle Fiskville Rd.
Austin, Texas
78752-4390
512.223.4ACC (4222)
|
|
Adding Streaming Media (RealMedia) in a Web Page |
Option 1: Adding a hyperlink to a Web Page
Option 2: Embedding the video in a Web Page
Adding a Hyperlink to a Web Page
- 1. Upload the .ram file to your ACC web space. (http://www.austincc.edu/yourDirectory).
- Create a hyperlink to the .ram file which you uploaded to the ACC web space. The following is a sample html code to input to your webpage:
<a href=”yourFile.ram”>Title of Video</a>
Embedding a Video in a Web Page
- Upload the .ram file to your ACC web space. (http://www.austincc.edu/yourDirectory).
- Create a hyperlink to the .ram file which you uploaded to your ACC web space. The following is a sample of the html code for your url:
http://www.austincc.edu/yourDirectory/yourFile.ram
- Copy and paste the following code into the html code body section of your web page:
<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="320" height="240" align="top" id=RVOCX>
<param name="src" value="
http://www.austincc.edu/yourDirectory/yourFile.ram?embed">
<param name="autostart" value="false">
<param name="controls" value="imagewindow">
<param name="console" value="one">
<embed src=" http://www.austincc.edu/yourDirectory/yourFile.ram?embed"
width="320" height="240"
autostart="true"
align="top"
type="audio/x-pn-realaudio-plugin"
controls="imagewindow"
console="one">
</embed>
</object>
<br>
<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA"
width="320" height="30" align="top" id=RVOCX>
<param name="src" value="
http://www.austincc.edu/yourDirectory/yourFile.ram?embed”>
<param name="autostart" value="false">
<param name="controls" value="controlpanel">
<param name="console" value="one">
<embed src=" http://www.austincc.edu/yourDirectory/yourFile.ram?embed"
width="320"
height="30"
autostart="true" align="top"
controls="controlpanel"
console="one"
type=" audio/x-pn-realaudio-plugin ">
</embed>
</object>
4. Replace the url (http://www.austincc.edu/yourDirectory/yourFile.ram) with the url to your ram file you created in Step 3. Note: The url appears four times in the embed code. You will need to replace all four with your url.
|
|
|