I've a strange problem. I have a website with embedded player for mp3's. Over http:// everything is working. Over https:// the same site does not play the songs. But the mp3's are available even over https: a href to the desired files plays flawlessly the song in a new window with vlc.
I'm using FF 38.01 with VLC 2.21.
What I've done:
Code: Select all
<tr>
<td>
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" id="ievlc" width=100%' height='32' events="true">
<param name="src" value="" /><param name="autoplay" value="false" />
<embed type="application/x-vlc-plugin" id="ffvlc" width="100%" height="32" bgcolor="#DDDDDD" controls="true" autostart="false" allowfullscreen="false" />
</object>
</td>
</tr>
<tr>
<td id="z144"><a href='energiewende.mp3'>energiewende.mp3</a></td>
<td id="z244">
<input type="button" class="tibtn" name="back" value="<" onClick="back()">
<input type="button" class="tibtn" value="||" onClick="pause(44);">
<input type="button" class="tibtn" name="play" value="Play >" onClick="play(44);" style="width:70px;">
<input type="button" class="tibtn" value="•" onClick="stop(44);">
<input type="button" class="tibtn" name="vor" value=">" onClick="vor()">
</td>
</tr>
....
vlc.playlist.add("https://www.website.de/mp3s/energiewende.mp3");
....
function play(nr) {
vlc.playlist.playItem(nr);
}
At HTTPS:// If I call the file "energiewende.mp3" over the href-link it works, with the playlist.item not!
At HTTP:// both ways are OK!
Another Problem with the MP3's is that the controlbar is hiding anyway and there sees to be no way to show it continuosly...!
Every hint would be very appreciated. Thanks, Robw