VLC Plugin fails in Chrome
Posted: 09 Jun 2014 17:03
If I try to load web page that contains an <embed> element in Chrome I receive the error "Could not load VLC Plugin".
A test page that exhibits the problem (for me anyway) can be found at https://dl.dropboxusercontent.com/u/311035/Sound.html. The page loads fine with Internet Explorer and plays the sound.
Is this problem common to other Chrome users, or is it just me? Does anyone have a solution?
TIA
R
VLC 2.1.3 Ricewind
Chrome 35.0.1916.114 m
Windows 8.1 64-bit
Source of test page:
A test page that exhibits the problem (for me anyway) can be found at https://dl.dropboxusercontent.com/u/311035/Sound.html. The page loads fine with Internet Explorer and plays the sound.
Is this problem common to other Chrome users, or is it just me? Does anyone have a solution?
TIA
R
VLC 2.1.3 Ricewind
Chrome 35.0.1916.114 m
Windows 8.1 64-bit
Source of test page:
Code: Select all
<script>
function PlaySound ()
{
var
sounder = document.getElementById ("ToneA") ;
sounder.Play () ;
}
</script>
<embed id="ToneA" height="1" width="1" src="https://dl.dropboxusercontent.com/u/311035/ToneA.mp3" autostart="false" enablejavascript="true"//>
<button onclick="PlaySound () ;">Play</button>