I've tried the solution described here and here, namely copying a QuickTime movie to ~/Library/Application Support/iPhone Simulator/User/Media/DCIM/100APPLE/VID_0001.m4v, but this doesn't seem to do anything, and I'm guessing something's changed since iOS 3.2 to make it not work.

Note that I'd very much prefer a solution that doesn't involve adding code to my app, unless that really is the only way to do it.

ETA: I know that it's possible to include video files as a resource; what I want is to add video files to the camera roll -- as can be done with photos by (for instance) saving images from Safari -- so I can test functionality that involves picking media files.

Updated again: If somebody can definitively tell me it's not possible, with references, that would be helpful too.

link|improve this question

73% accept rate
feedback

3 Answers

If you stick your MP4 file into the "Resources" group/folder in xcode the simulator will have access to it just like other local resources.

Below is an example on devx that illustrates playing a movie file from the resources group.

devx Example

link|improve this answer
I'm aware of that -- what I'm looking for is a (non-programmatic) way to add video to the camera roll, as is possible with photos. – David Moles Jan 7 '11 at 17:38
feedback

Have you seen the solution by Shizam, here:

iphone - How do I add videos to iPad simulator?

It requires code, however.

link|improve this answer
Yeah, I saw that, and I expect I can get it to work, but as I said I'd rather not have to do it in code. – David Moles Jan 7 '11 at 17:38
I couldn't get the "old" method to work, but the code method worked fine. Looks like Apple has locked it down :(. Idiots. – Adam Feb 18 '11 at 17:26
feedback

I used the code solution in the end, but looking at the simulator folders afterwards, it's using a different naming strategy for the videos.

Maybe it will work if you save the file as:

~/Library/Application Support/iPhone Simulator/User/Media/DCIM/100APPLE/IMG_0001.M4V

link|improve this answer
Tried this and it didn't work. I would dearly love to know the correct place to put a video so that it shows up in Camera Roll. – mpemburn Apr 20 at 15:39
Worked in iOS 4. Apple keeps changing folder names with each version of iOS. File a bug report with Apple. – Adam Apr 22 at 12:07
feedback

Your Answer

 
or
required, but never shown

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