Loading local flv on iPad
I have published an AIR app for iOS but am having trouble loading and playing a video file (flv container) locally from the applicationDirectory. I can load it fine from a server, but when i include it into the ipa and try to load from its path relative to the applicationDirectory (or applicationStorageDirectory for that matter) it does not load.
Any ideas why..? Code below for creating the filepath, the video loads via netconnection/netstream
var path:String = File.applicationDirectory.resolvePath("video/Clusta_Reel.flv").url;
loadNewVideo(path);
Thanks
