OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>WebRTC Automated Test</title> | 4 <title>WebRTC Automated Test</title> |
5 <script type="text/javascript" src="adapter.js"></script> | 5 <script type="text/javascript" src="adapter.js"></script> |
6 <script type="text/javascript" src="test_functions.js"></script> | 6 <script type="text/javascript" src="test_functions.js"></script> |
7 <script type="text/javascript" src="message_handling.js"></script> | 7 <script type="text/javascript" src="peerconnection.js"></script> |
8 <script type="text/javascript" src="getusermedia.js"></script> | 8 <script type="text/javascript" src="getusermedia.js"></script> |
9 <script type="text/javascript" src="jsep01_call.js"></script> | |
10 <script type="text/javascript" src="video_extraction.js"></script> | 9 <script type="text/javascript" src="video_extraction.js"></script> |
11 </head> | 10 </head> |
12 <body> | 11 <body> |
13 <table border="0"> | 12 <table border="0"> |
14 <tr> | 13 <tr> |
15 <td>Local Preview</td> | 14 <td>Local Preview</td> |
16 <td>Remote Video</td> | 15 <td>Remote Video</td> |
17 </tr> | 16 </tr> |
18 <tr> | 17 <tr> |
19 <td> | 18 <td> |
20 <video id="local-view" autoplay="autoplay"></video> | 19 <video id="local-view" autoplay="autoplay"></video> |
21 </td> | 20 </td> |
22 <td> | 21 <td> |
23 <!-- startFrameCapture() takes 3 parameters: | 22 <!-- startFrameCapture() takes 3 parameters: |
24 1. reference to remote video tag. | 23 1. reference to remote video tag. |
25 2. fps: fps at which we would like to sample. | 24 2. fps: fps at which we would like to sample. |
26 3. duration: The duration of the capturing. --> | 25 3. duration: The duration of the capturing. --> |
27 <video id="remote-view" autoplay="autoplay" | 26 <video id="remote-view" autoplay="autoplay" |
28 onplay="startFrameCapture(this, 30, 5)"></video> | 27 onplay="startFrameCapture(this, 30, 5)"></video> |
29 </td> | 28 </td> |
30 </tr> | 29 </tr> |
31 </table> | 30 </table> |
32 </body> | 31 </body> |
33 </html> | 32 </html> |
OLD | NEW |