I'm working on an application running on Chrome only.
I need to be able to switch the source from a playing video.
I've used javascript (&jQuery) to change the src attribute :
$fullscreenVideo.get(0).src = '/video/' + name + '.mp4'; // crash here
$fullscreenVideo.get(0).load();
$fullscreenVideo.get(0).play();
It works a few times but my chrome (tried beta & dev channels) ends up crashing (page become unresponsive).
If i try to create a new element prepending last codeblock with :
$fullscreenVideo.remove();
$fullscreenVideo = $('<video id="video-fullscreen" width="800" height="600" loop="loop"></video>').appendTo("#page-fullscreen > div.fullscreen");
Every video switch increase RAM by 20Mo without ever getting back down.
Is there a way to trace/prevent chrome crash en src update ? Is there a way to force free memory ?
loadand don't runplay? Maybe it needs a delay before the play...? – Yar Jan 14 '11 at 18:37.src=''first, to clear it? – Blindy Jan 14 '11 at 18:51