I'm displaying remote video files using the MPMoviePlayerViewController, and I'd like to be able to save the downloaded video to the documents directory, once it has finished downloading. Is there any way to do this, or get access to the movie data? I know I can download it with NSURLConnection, but then it basically has to download twice instead of just once.
Update:
What I ended up doing is kicking off a delayed background download of the same file that's currently being played by the movie player, but only IF the connection is WIFI so I don't suck all their bandwidth, and choke the currently playing movie.