-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech.php
More file actions
executable file
·25 lines (21 loc) · 1010 Bytes
/
tech.php
File metadata and controls
executable file
·25 lines (21 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?
include("include/session.php");
include("include/functions.php");
if(!$session->logged_in){
$url = curPageUrl();
header("Location: main.php?returl=$url");
}
else{
$title = "Connected Mathematics - Streaming Technical Information";
include 'head.php';
?>
<div id="streamtextdiff">
<h1>Technical Requirements</h1>
<p>To view CMP streaming videos you must have a broadband connection (min speed 768kbps). There are two video resolutions available, high and low, high is recommended for users with cable internet although it may work with slower connections. If you can't get high res to work try low res. If neither work please <a href="../contact">contact us</a>. You must also have the latest version of Quicktime installed. It is free for both Mac and PC, you may download it <a href="http://www.apple.com/quicktime/download" target="_blank">here</a> (opens a new window).
</p>
<center><img src="streaminglogo.png" alt="CMP Logo"/></center>
</div>
<?
include 'foot.php';
}
?>