OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Encrypted Media Player</title> | 4 <title>Encrypted Media Player</title> |
5 </head> | 5 </head> |
6 <body onload="runTest();"> | 6 <body onload="runTest();"> |
7 <video controls></video> | 7 <video controls></video> |
8 <script src="media_utils.js" type="text/javascript"></script> | 8 <script src="media_utils.js" type="text/javascript"></script> |
9 <script src="media_source_utils.js" type="text/javascript"></script> | 9 <script src="media_source_utils.js" type="text/javascript"></script> |
10 <script src="encrypted_media_utils.js" type="text/javascript"></script> | 10 <script src="encrypted_media_utils.js" type="text/javascript"></script> |
(...skipping 17 matching lines...) Expand all Loading... |
28 // The test completes after playing the encrypted media for 1 second and | 28 // The test completes after playing the encrypted media for 1 second and |
29 // getting the ended event or when an error occurs at any time. | 29 // getting the ended event or when an error occurs at any time. |
30 function runTest() { | 30 function runTest() { |
31 loadEncryptedMediaFromURL(video); | 31 loadEncryptedMediaFromURL(video); |
32 video.addEventListener('timeupdate', onTimeUpdate); | 32 video.addEventListener('timeupdate', onTimeUpdate); |
33 video.play(); | 33 video.play(); |
34 } | 34 } |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |