Advertisement
2_2002-2004 Internet/ Browsers/ HTML #126435

web media player

i did this page for a sci project. i needed it to play some video so i did this script to use the windows media player control. you can play more then 1 media file(audio/video) but more then 1 might make someones browser crash.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
this shows a video on sharks from another page. in a frame next to the page is all about sharks. i know you all just came to look at this for the media, the media code is in shark.html. the only reason i put the rest of the stuff in is cause i think it looks good 2gether.
Note: I have an old version of netscape and it didnt work on that. it was made for IE since my school only has IE!
//////////////////////////////////////////////////
Simple Temperature Converter (c) Jose Verdel 2001
//////////////////////////////////////////////////
#include <iostream.h>
int main()
{
	char temp_t;
 float temp;
 cout << "Enter temperature to be converted:";
 cin >> temp;
 cout >> "Enter f if temperature is Fahrenheit or c for Celsius:";
 cin >> temp_t;
 if (temp_t == 'f')
 {
cout <<"\nThe Celsius temperature is:" << (5.0 / 9.0) * (temp -32.0) << endl;
 }
 else
 {
cout <<"\nThe fahrenheit temperature is:"   << (9.0 / 5.0) *( temp + 32.0) <<endl;
 }
 return 0;
}
Original Comments (3)
Recovered from Wayback Machine