I'm using mx:videodisplay to play video files (.flv and .mp4), and it works fine. It does what it's supposed to do - it plays the video file perfectly. But every time I reload the page, the source video file is redownloaded onto my computer, which causes the memory used by plugin-container.exe to increase accordingly until there is no more free memory left and it crashes.
Here's Task Manager after three reloads.
Before first reload
http://i.stack.imgur.com/4PJDe.jpg
After third reload
http://i.stack.imgur.com/Yivtk.jpg
So my question is: Is there any way I can delete the downloaded file after reloading the page?
If you are wondering why I need to reload the page. The thing is that, the website I'm developing has to be able to play many different video files, not just one. And as long as the tab of my website is open in Firefox, the memory used by plugin-container doesn't decrease. After I close the tab the memory is released. But it's very inconvenient to have to leave the website, reenter and then log on again, after watching every video.
Here's the script. It's actually a thumbnail, that shows four frames of the video (repeat) after two seconds (interval).
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()">
<mx:Script>
<![CDATA[
[Bindable]
public var source:String;
[Bindable]
public var repeat:int=4;
[Bindable]
public var interval:int=2;
private var timer:Timer;
import mx.events.VideoEvent;
private function init():void{
timer = new Timer(interval*1000,0);
timer.addEventListener(TimerEvent.TIMER, switchThumbnail);
}
private function startTimer():void {
vid.play();
vid.pause();
vid.playheadTime=vid.totalTime/repeat;
timer.start();
}
private function resetTimer():void {
vid.stop();
vid.close();
timer.reset();
}
private function switchThumbnail(event:TimerEvent):void{
vid.playheadTime=vid.playheadTime+vid.totalTime/repeat;
if(vid.playheadTime>=vid.totalTime){
vid.playheadTime=0;
}
}
]]>
</mx:Script>
<mx:Canvas>
<mx:VideoDisplay id="vid" source="{source}" autoPlay="false" rollOver="startTimer()" rollOut="resetTimer()" volume="0" maintainAspectRatio="false" width="{width}" height="{height}"/>
</mx:Canvas>
Even this script has the same problem:
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" >
<mx:Script>
<![CDATA[
[Bindable]
public var source:String;
]]>
</mx:Script>
<mx:Canvas>
<mx:VideoDisplay id="vid" source="{source}" autoPlay="false" volume="0" maintainAspectRatio="false" width="{width}" height="{height}"/>
</mx:Canvas>