Reputation: 1054
If I have a link to a SWF file - for example here http://redletterdaysb2b.co.uk/swf/our-video.swf how can I extract it for use on another website? I have downloaded the swf, but just get an error#2044 when I try and play it. does it need to go in some sort of wrapper? thanks guys
Upvotes: 0
Views: 183
Reputation: 51847
You're trying to load a swf that in turn loads and displays a .flv using the FLVPlayback component. I'm guessing our-video.swf loads fine, but it probably keeps a relative reference to the .flv.
I can think of two ways to handle this:
With the FLVPlayback component there's another part that could cause the error: the skin which on the original site is here.
The #2024 IOError should also include an URL. This is your best hint to how the our-video.swf is trying to load the .swf file (using a relative(./swf/redletterdays.swf) or an absolute(/swf/redletterdays.swf) path).
Based on this, if you decide to load the player from the original site (not just the .flv file), you can work out where to place the skin (i.e. in the in a folder named swf on the root of the new site)
Upvotes: 2