I have a page that has a table with each row corresponding to an audio file. The last cell in each row embeds a simple flash audio player. The problem is that the flash file for the player is being downloaded for each row separately and as soon as rows go beyond 40-50 it crashes the browser.

I tried using different players (1pixelout, flash-mp3-player) and the problem is still there, so its not a player specific issue.

Is there any way to cache the player so that it is only downloaded once?

screenshot alt text

link|improve this question

Why do you need 40 or so audio players - are you playing multiple audio files at a time? If not, just have one audio player and pass the file url to the player as and when necessary – Amarghosh Jun 17 '10 at 7:08
I don't need to play multiple files simultaneously. I've added a screenshot of what I'm trying to achieve. that should make it more clear – Gunjan Jun 17 '10 at 7:18
feedback

1 Answer

up vote 0 down vote accepted

Swf file with same properties should be cached in first place, you probably pass parameters to it thus the download of all instances. I'm not sure you can use one player to play 50 files the same time. try to use the smallest player you can find and set it's autoplay option to 0 or false. So player will be downloaded but file won't be played until user clicks on it.

I have page with 100 images on it, each image is about 50KB and it works fine for all users with internet above 750Kbit. So reduce player size or even write your own which has only play and stop button on it (should be about 2-5KB for each instance) and make it load file on user click.

link|improve this answer
The player i'm using is just 2.5 kb and it does load the audio only on user click. But the player itself getting downloaded multiple times is the problem – Gunjan Jun 17 '10 at 7:15
@Gunjan, because you probably pass different parameters to it or your browser has caching disabled. – eugeneK Jun 17 '10 at 7:16
@Gunjan even if caching is disabled and player is loaded just once, 40 instances of Flash players would be created as they're different objects on stage. So network-wise you'd be safe but memory wise the browser will die after a while – Amarghosh Jun 17 '10 at 7:35
@Amarghosh, I don't think that would necessarily be a problem. Multiple instances of Flash content get driven out of the same process, so you don't use 40x the resources just for having 40 SWFs. I'd say test Eugene's suggestion by trying a version of the page that doesn't pass any parameters, so you can be reasonably sure the SWF is only getting loaded once. (Incidentally, whether the SWF gets loaded more than once is up to the browser, not Flash.) – fenomas Jun 17 '10 at 12:12
@fenomas All the SWFs should be running even though multiple songs won't be played at the same time - may be they're running out of same FP process but that process would end up taking more and more space as the number of SWFs increase. This is not the same as reusing URLLoader instances or moving particles once they go out of stage. – Amarghosh Jun 17 '10 at 13:29
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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