How to install the VLC plugin in the browser?

1

I'm following several pages to play my example video in the browser, and I'm having a hard time with the VLC plugin because I just can not install it.

Here's the sample video:

http://dveo.com/downloads/TS-sample-files/San_Diego_Clip.ts


Here is the code I'm using to enable pluguin:

  

SOpt example:

<embed
  type="application/x-vlc-plugin"
  pluginspage="http://www.videolan.org"
  version="VideoLAN.VLCPlugin.2"
  width="300"
  height="200"
  id="vlc"
  loop="yes"
  autoplay="yes"
  target="http://dveo.com/downloads/TS-sample-files/San_Diego_Clip.ts"
/>
</embed>


  

VLC wiki example:

<!DOCTYPE html>
<html>
  <title>
    VLC Mozilla plugin test page
  </title>
  <body>
    <embed
      type="application/x-vlc-plugin"
      pluginspage="http://www.videolan.org"
      width="640"
      height="480"
      id="vlc"
      target="http://dveo.com/downloads/TS-sample-files/San_Diego_Clip.ts"
    />

    <script type="text/javascript">
      <!--
      var vlc = document.getElementById("vlc");
      vlc.audio.toggleMute();
      //-->
    </script>
  </body>
</html>

MAS always appears "" this plugin is not supported "" Home In the configuration of the browsers I looked for several VLC Plugins but none seems to be correct, in the VLC page also I do not find to download / install ...

    
asked by anonymous 19.06.2017 / 03:02

0 answers