http://tetelestai.or...6&date=&verses=
The problem is that the lessons stop buffering after a few minutes. I have done a lot of troubleshooting here and have found that the problem is not with the audio player (I have implemented several different jQuery, HTML5, and Flash players to try and overcome the issue. It's also not the files themselves... they all work end-to-end when I play them locally.
Also, most of the lessons worked perfectly before I launched the site.
So my only conclusion is that it has to be something to do with how the file is loading into the site... and something is telling it to stop loading.
I have also, by the way, tried to get rid of the dynamic generation of the audio player and made it an absolute reference... that didn't work either.
Anyway, here is the code... I could really, really use some help here:
//Header
<code><script src="../../mediaelement/build/jquery.js"></script>
//Body
<div id="aud">
<audio controls="control" preload="none" src="../../assets/audio/the_4th_g/the_4th_g_296.mp3" type="audio/mp3" />
</div>
<script>
jQuery(document).ready(function($) {
$('#version').html( mejs.version);
// declare audio player with jQuery
$('audio').mediaelementplayer({audioWidth: 380, success: function(me) { $('#audio-type').html( me.pluginType); }});
});
</script>Note: the code I have listed is my most recent code and is different from what is in the link.













