JavaScript - มัลติมีเดีย

JavaScript navigator วัตถุมีวัตถุลูกที่เรียกว่า plugins. ออบเจ็กต์นี้เป็นอาร์เรย์โดยมีรายการเดียวสำหรับแต่ละปลั๊กอินที่ติดตั้งบนเบราว์เซอร์ อ็อบเจ็กต์ navigator.plugins ได้รับการสนับสนุนโดย Netscape, Firefox และ Mozilla เท่านั้น

ตัวอย่าง

นี่คือตัวอย่างที่แสดงวิธีการแสดงรายการปลั๊กอินทั้งหมดที่ติดตั้งในเบราว์เซอร์ของคุณ -

<html>
   <head>
      <title>List of Plug-Ins</title>
   </head>
   
   <body>
      <table border = "1">
         <tr>
            <th>Plug-in Name</th>
            <th>Filename</th>
            <th>Description</th>
         </tr>
         
         <script language = "JavaScript" type = "text/javascript">
            for (i = 0; i<navigator.plugins.length; i++) {
               document.write("<tr><td>");
               document.write(navigator.plugins[i].name);
               document.write("</td><td>");
               document.write(navigator.plugins[i].filename);
               document.write("</td><td>");
               document.write(navigator.plugins[i].description);
               document.write("</td></tr>");
            }
         </script>
      </table>      
   </body>
</html>

เอาต์พุต

กำลังตรวจสอบปลั๊กอิน

ปลั๊กอินแต่ละตัวมีรายการในอาร์เรย์ แต่ละรายการมีคุณสมบัติดังต่อไปนี้ -

  • name - คือชื่อของปลั๊กอิน

  • filename - คือไฟล์ปฏิบัติการที่โหลดมาเพื่อติดตั้งปลั๊กอิน

  • description - เป็นคำอธิบายของปลั๊กอินที่จัดทำโดยนักพัฒนา

  • mimeTypes - คืออาร์เรย์ที่มีรายการเดียวสำหรับ MIME แต่ละประเภทที่ปลั๊กอินรองรับ

คุณสามารถใช้คุณสมบัติเหล่านี้ในสคริปต์เพื่อค้นหาปลั๊กอินที่ติดตั้งจากนั้นใช้ JavaScript เพื่อเล่นไฟล์มัลติมีเดียที่เหมาะสม ลองดูตัวอย่างต่อไปนี้

<html>   
   <head>
      <title>Using Plug-Ins</title>
   </head>
   
   <body>   
      <script language = "JavaScript" type = "text/javascript">
         media = navigator.mimeTypes["video/quicktime"];
         
         if (media) {
            document.write("<embed src = 'quick.mov' height = 100 width = 100>");
         } else {
            document.write("<img src = 'quick.gif' height = 100 width = 100>");
         }
      </script>      
   </body>
</html>

เอาต์พุต

NOTE - ที่นี่เรากำลังใช้แท็ก HTML <embed> เพื่อฝังไฟล์มัลติมีเดีย

การควบคุมมัลติมีเดีย

ให้เรานำตัวอย่างจริงที่ใช้งานได้ในเกือบทุกเบราว์เซอร์ -

<html>   
   <head>
      <title>Using Embeded Object</title>
      
      <script type = "text/javascript">
         <!--
            function play() {
               if (!document.demo.IsPlaying()) {
                  document.demo.Play();
               }
            }
            function stop() {
               if (document.demo.IsPlaying()) {
                  document.demo.StopPlay();
               }
            }
            function rewind() {
               if (document.demo.IsPlaying()) {
                  document.demo.StopPlay();
               }
               document.demo.Rewind();
            }
         //-->
      </script>
   </head>
   
   <body>      
      <embed id = "demo" name = "demo"
         src = "http://www.amrood.com/games/kumite.swf"
         width = "318" height = "300" play = "false" loop = "false"
         pluginspage = "http://www.macromedia.com/go/getflashplayer"
         swliveconnect = "true">
      
      <form name = "form" id = "form" action = "#" method = "get">
         <input type = "button" value = "Start" onclick = "play();" />
         <input type = "button" value = "Stop" onclick = "stop();" />
         <input type = "button" value = "Rewind" onclick = "rewind();" />
      </form>      
   </body>
</html>

เอาต์พุต

หากคุณใช้ Mozilla, Firefox หรือ Netscape