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 ?

link|improve this question

What happens if you run load and don't run play? Maybe it needs a delay before the play...? – Yar Jan 14 '11 at 18:37
It crashes on the src attribute update, before load or play. I tried to add some delay before it but did not change anything. – olouv Jan 14 '11 at 18:46
1  
What if you add a .src='' first, to clear it? – Blindy Jan 14 '11 at 18:51
I tried it, with or without 150ms delay timeouts, it seems to crash less often, but it still crashes. I'll try to tweak timeouts to see if it can be crash free. – olouv Jan 17 '11 at 12:10
feedback

3 Answers

up vote 2 down vote accepted

I've been the same problem.
I read in some foruns that is a chrome's bug with memory leaks (some people say that just happens in chrome 8 and in chrome 6 works fine, but i didn't test it).

I also read that using a sleep helps. I tried and it is true, if i put a sleep before change url atribute and call load() the crashes number decreases. But still continues to crash after many changes.

Then, i tried to use setTimeout (unlike sleep, it doesn't bloq CPU, leaving it free to chrome's work).

And it is working now. Try to see if my code helps.

var videoChangingPending = false;
function changeMovieSource(url, title){

        var $video = $('#video');
        try {
            document.getElementById('video').src = url;
        }
        catch (e) {
            alert(e);
        }     

        $video.attr('autoplay', 'true');
        $video.data('currentTitle', title);

        document.getElementById('video').load();

        videoChangingPending = false;
}    

function startPlayer(url, title) {

        if(videoChangingPending == true) 
            return;



        document.getElementById('video').pause();


        videoChangingPending = true;
        var changeMovieCallback = function(){ changeMovieSource(url, title);}
        var t = setTimeout(changeMovieCallback, 800);

}
link|improve this answer
feedback

I would assume the first way should work fine, and Chrome's <video> implementation is still buggy. Feel free to mention it on their bug report forums.

link|improve this answer
+1 I agree it must be a bug, but still would be nice if anyone knew a workaround – Martin Jespersen Jan 14 '11 at 18:40
Unfortunately I don't, I haven't had a need for video tags yet. But the sooner you mention it on their site, the faster it will get fixed! – Blindy Jan 14 '11 at 18:50
feedback

I was experiencing this problem so all I did was remove the video tag and then add another with the current url "on the fly".

link|improve this answer
but in that case, your ram does not leak? – olouv Apr 1 '11 at 10:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.