vote up 4 vote down star
1

I am new to writing iPhone apps, but I have an idea for one. The only problem is that the app I want to write will require a ton of very tiny sound files. I want to organize everything in a hierarchy of folders in the app, but allow the user to add more sounds later, possibly from the music collection or something. Basically, the user needs to be able to add sound files, but the only way I see to have sound files in the app are if they are in the binary app.

Is anyone familiar with setting up an iPhone app that can access sound or media files from outside the iPhone app?

flag

60% accept rate

3 Answers

vote up 2 vote down

You can definitely do that. Start reading this document to get familiar with iPhone's audio and video APIs.

You can write all sorts of files into the phone's file system to store the sound files later.

link|flag
ok, so I can WRITE to files outside of the app, but can I read them? So if I had a microphone I could record something and put it in a special folder, say I want to boot up the iPhone app and load a bunch of sound files for my app. Can I use a separate folder to keep those files to read? – wlindner Mar 23 at 14:10
Yes. You can definitely do that. You could record a voice message and store it on the iPhone's file system, and then use some API to play it. – Pablo Santa Cruz Mar 23 at 14:12
Ok, so what if I don't want to record to a special separate folder. What if I just want to have a folder that I have manually put sound files into on my iPhone hard drive, then the iPhone app always looks in that folder and can use those files in the iPhone app. – wlindner Mar 23 at 14:26
How are you planning to put the files manually into the mentioned folders? – Pablo Santa Cruz Mar 23 at 14:54
It depends on my options. I want a folder that I can put sound files into as the dev, but also let users add more files that will then be used in the app. I guess it would be fine if only I could put a hierarchy of files in the resource folder, just as long as it's not all in the root of the app. – wlindner Mar 23 at 15:01
show 4 more comments
vote up -1 vote down

You can't access files outside of your iphone app folder.

link|flag
What if you have a folder set up in "Resources" can you set up a folder hierarchy in there that the iPhone app could look in every time it starts up. I guess that would mean the user could not modify that folder though. – wlindner Mar 23 at 14:27
you can do anything in your app folder – CiNN Mar 23 at 16:38
vote up 3 vote down

You can access files from outside your app bundle, it simply has to be in the document folder associated to your application.

Here is an example for fopening a file in the document folder (I code in Objective-C++)

FILE *fopenForDocument(std::string fileName, const char *mode) {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    std::string s=[documentsDirectory cStringUsingEncoding:NSASCIIStringEncoding];
    s+="/"+fileName;
    FILE *file = fopen(s.c_str(),mode);
    if (file==NULL) {
    	//LOG("failed to open file %s",fileName.c_str());
    }
    //LOG(s.c_str());
    return file;
}

In your case, the sounds that come with your application must be in the app bundle, and the sounds your users will later add must be located in the document folder.

link|flag

Your Answer

Get an OpenID
or

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