HT201301 How do I import a garageband project folder (and its contents) into itunes?

How do I import a garageband project folder (and its contents) into itunes so I can transfer it to my ipad?
I am a guitar teacher and I want to use garageband for the ipad as a teaching tool for my students.  The goal is for my students and myself to share garageband project files so that both the teacher and the student can have the full project...or even add to it.
Here's what I need help with...
My student has created a song in garageband that has 4 tracks.  They sync their song to itunes so they can see the project folder for that song in the document window for garageband under the "apps" tab in itunes.  They click "save to" and save the project folder to dropbox. 
I want to be able to import the project folder for that song from dropbox into itunes so that I can copy it to my ipad and have full access to my student's song.
I appreciate any help!  Thanks!
Pat
[email protected]

hi Pat,
what you can do is add that folder to garageband directory using ifunbox. here is the step:
- Open your ifunbox then go to "user Applications" on your left panel, then select garageband folder. You will see a folder as below:-
"Documents"
"Library"
"MobileGarageBand.app"
"tmp"
"itunesartwork"
"itunesmetada.plist"
copy the folder you like to put into your ipad by copy it into "Documents" folder. and then quit the ifunbox and restart your itunes again and sync your ipad again and check if you can see the folder on your file sharing under apps tab. Wish you good luck.

Similar Messages

  • Does anyone know how or if even possible to block stations and limit content on iTunes Radio?

    Does anyone know how or if even possible to block stations and limit content on iTunes Radio?  I have younger children listening to inappropriate music.  I have the iPad locked down but that doesn't seem to help.

    Thank you for your response! I just don't want to spend more time on beautifying the libsyn page via hours of dumpster diving for code hence reaching out on here about iWeb (even if it's sadly been put out to pasture). This was the response that I got from Libsyn about this:
    Hello,
    Thanks for contacting us. Just to clarify, our system's blog page templates are basic 'starting points' -- we're working now to improve our basic blog page templates to make more options available to Libsyn users.
    You might be able to use your Libsyn show's RSS feed to generate content on an iWeb page. You could do a Google search for 'convert RSS to HTML' to learn more. Here's a link for more info about generating HTML content from an RSS feed source:
    http://www.blogtips.org/free-rss-tools/
    We appreciate your feedback and suggestions. Please let us know if you have any questions. 
    Any thoughts? Btw, if it possible to 'view source code' for an iWeb page that's created or to take html code and plaster it into an iWeb page? If that's possible then I might be able to use iWeb for Libsyn.

  • How to extract a folder (and its contents) from inside a zip file?

    There is a zip file which contains a folder inside it. The folder itself contains a few files. I would need to know how to extract the folder (with its contents) from inside a zip file.
    I have found a few unzipping code samples which show how to handle a folder inside a zip file. An example is shown below:
    public static void extract(String workingDirectory, byte[] zipFile)
    throws Exception {
    ByteArrayInputStream byteStream = new ByteArrayInputStream(zipFile);
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    ZipInputStream zipStream = new ZipInputStream(byteStream);
    ZipEntry zipEntry = null;
    String nameZipEntry = null;
    byte[] contentZiphttp://forum.java.sun.com/post!default.jspa?forumID=31#
    Click for code tagsEntry = null;
    boolean isDirectory = false;
    int indexFileSeparator = -1;
    String directory = null;
    String fileName =  null;
    while ( (zipEntry = zipStream.getNextEntry()) != null )
                nameZipEntry = workingDirectory + File.separator + zipEntry.getName();
                isDirectory = zipEntry.isDirectory();
                if (isDirectory) {
    File file = new File(nameZipEntry);
    file.mkdirs();
                else
                    // read zipEntry
                    byte[] buf = new byte[1024];
                    int c = 0;
                    while ( (c = zipStream.read(buf)) != -1)
                        out.write(buf, 0, c);
                    indexFileSeparator = nameZipEntry.lastIndexOf(File.separator);
                    directory = nameZipEntry.substring(0, indexFileSeparator);
                    fileName =  nameZipEntry.substring(indexFileSeparator+1,nameZipEntry.length());
                    FileSystemTools.createFile(directory, fileName, out);
                    out.reset();
                    zipStream.closeEntry();
            zipStream.close();
            byteStream.close();
    }The code sample which deals with the part where the zipEntry is a directory creates a directory with the same path and name. (highlighted in bold)
    Another similar variation is:
    File file = new File(dirDestiny.getAbsolutePath() + File.separator + zipEntry.getName() );
    if(zipEntry.isDirectory())
          file.mkdirs();When the code creates a directory for the folder, does it unzip the contents inside the folder as well?
    If not, how do I extract the files inside the folder?

    Have you already tried to see if the sample code you downloaded works or not? Maybe if you try out the code yourself you can see if it extracts files from a directory within a zip file?
    I like to use pkzip. It is a command line compression/uncompression tool that can be used from a batch file. If you assignment involves unzipping large amount of zip files on a regular basis, I recommend taking a look at pkzip.

  • How do I import wav files from an external hard drive into itunes converting to aac?

    I have 270 gig of wav files on an external hard drive.  I am having trouble finding a way to import these into itunes while converting to aac

    Note that .wav files do not carry a tag. If you import files of the form ..\<Artist>\<Album>\## <Name> into iTunes it will fill in the name property as the filename ## <Name> and all other fields will be blank.  Assuming there is useful data in the path to capture, use Edit > Preferences > Avanced and disable the Keep... and Copy... options before adding the tracks to iTunes. You can then use the script TagFromFilename to fill in the blanks. Once this information is there you can convert the files to their new format and the converted files will inherit the track details.
    You might want to consider initially converting to Apple Lossless which could halve the physical size of the collection with no loss of quality, and permanently embed the tag details. You can then choose to make a downsampled collection while retaining the full quality lossless copies and completely discarding the .wav originals.
    tt2

  • How to Drag a image from a folder and drop it into Photoshop, InDesign using keyboard?

    Hi!
    Others may think silly about this question but the reality is I have to drag and drop several images into InDesign from a folder each one by one. Is it possible to drag and drop images from desktop (folder) to Adobe InDesign, Photoshop, etc?
    Thanks!
    Hope a positive reply.

    Thanks Peter/Jongware
    I searched Google and found the link below but became unable to use 'drag and drop'
    http://www.knowledgesutra.com/forums/Keyboard-Mouse-t49017.html
    I'm using Windows 7 Ultimate.
    Thanks.

  • Help me Friends - How to Delete a Folder and its contents in java

    Hi Friends
    I want to delete a folder and its contents by passing the folderpath.
    Can any one help me in this..
    Thanks in Advance
    Regards
    Krishna

    * Delete a directory including all of its content.
    * @param directory Directory path to delete.
    public static void deleteDirectory(String directory) {
    if (directory != null) {
    File file = new File(directory);
    if (file.exists() && file.isDirectory()) {
    //1. delete content of directory:
    File[] files = file.listFiles();
    int count = files.length;
    for (int i = 0; i < count; i++) { //for each file:
    File f = files;
    if (f.isFile()) {
    f.delete();
    } else if (f.isDirectory()) {
    deleteDirectory(f.getAbsolutePath());
    }//next file
    file.delete(); //finally delete (empty) input directory
    }//else: input directory does not exist or is not a directory
    }//else: no input value
    }//deleteDirectory()

  • How can I import iPhone Garageband Files to Mac Garageband?

    How can I import iPhone Garageband Files to Mac Garageband? I've found lots of threads about this but no direct answers/how to.
    Thanks

    With the latest build of GarageBand on the device, move to the My Songs view, tap the Edit button at top right, select the shaking song you want to export, then tap the sharing arrow symbol at top left, tap iTunes, then GarageBand.
    Connect the device to iTunes, select it in the left-hand column, then select the Apps tab. You should find the exported file in the File Sharing area of the GarageBand app and from there you can copy it to your computer, then open it with the GarageBand application.
    tt2

  • I would like to import two different cf cards from two different cameras into the same project/folder and have them be in order of the times they were taken, is there a trick?

    I would like to import two different cf cards from two different cameras into the same project/folder and have them be in the order of the times they were taken, any ideas on how to do this?

    Just import them normally and sort the project by date. They will fall into place. If you tried this and it isn;t happening then make sure the data and times on the two cameras are identical and make sure you are sorting by date and time and nothing else.

  • Can one move or upload a garageband project done on an iPad into logic for further and finer tweaking?

    Can one move or upload a garageband project done on an iPad into logic for further and finer tweaking?

    Share your GarageBand iPad project to iTunes as a project. Then you can import it into GarageBand and upgrade it to a GarageBand Mac project. And Logic can open GarageBand for Mac projects.

  • How do I import music files from a flash drive to my iTunes library on my laptop

    How can I import music files from a flash drive to my iTunes library? I put the flash drive into my laptop, selected " add file to library", selected the songs I wanted from the flash drive, and it looked like they were added as the names show under " recently added". Then I removed the flash drive from my laptop But when I select one of the songs and try to play it a message saying "the song could not be used because the original file could not be found. Would you like to locate it?"  So it seems the actual files did not transfer. What do I do? I have done this. With a cd in the past with nsomproble,.

    Suncadia wrote:
    Thank you!! This worked. It does seem there should be an easier way but this did work.
    Dragging the files to "Automatically Add..." is pretty easy once you know where to look.  Just make sure iTunes is running when you do it; otherwise the files will just sit there until the next time you open iTunes.
    (Interestingly, the way you originally tried to do would have worked fine except for one little detail:  you have to first go into Edit > Preferences > Advanced, and check the box for "Copy files..."  If that is not done, iTunes will reference the files on the flash drive, which of course are not accessible once the drive is removed, as you saw.)
    Anyway, glad that all is now sorted.  Enjoy the music!

  • MS Project 2010 Server - How to move a single MS Project plan and SharePoint Project site from a PWA server to another PWA server (one at a time)

    MS Project 2010 Server
    How to move a single MS Project plan and it's SharePoint project site from a PWA server to another PWA server (one at a time)
    I have 2 Project PWA servers, i know how to copy all the databases (Publishing, Draft, Reporting, archive, content) from one SQL server and copy it to the other PWA server so both server can be identical.
    I need to only move a single project from a PWA server to another, 
    Moving the Project plan, actual time data, SharePoint site with all it's content
    Is there a 3rd party tool that can be added on to the server to help me move single project plans? to different PWA servers?
    -Isaack

    Visit my friends at FluentPro and try FluentBooks
    http://www.fluentpro.com/productsfluentbooks2013.html
    they have a 2010 version also.
    Hope that helps,
    Thanks, Eric S. Pcubed

  • How do I import video from a Sony DSC-HX100V Camera into iPhoto

    How do I import video from a Sony DSC-HX100V Camera into iPhoto? . . . i can see all the photos but the videos are not visable (I also connected the SD card with a USB Sony SD Card Reader - again only the photos are accessible - no video files are shown) . . .

    If you're shooting AVCHD then you'll need to upgrade to iPhoto 11v9.3 to import this material.
    A note on AVCHD: This format was developed for people who are shooting to edit the material afterwards. If you're shooting to edit, then iMovie or Final Cut are the correct home for this material. If you're not shooting to edit consider using one of the other video formats on your Camera.

  • How do i import file formate imaged from panasonic DMC ZS40 into PSE 9.0

    how do i import file format  image from Panasonic DMC ZS40 into PSE 9.0. Any help appreciated.
    Thanks

    See:
    * http://kb.mozillazine.org/Import_bookmarks

  • How transfer exact arborescence from my music folder on Hard Disk to iTunes ?

    Hello All i'm French
    How transfer exact tree from my music folder on Hard Disk to iTunes ?
    I'm Dj, i use my Mac for that. I'm new on Mac.
    On my Pc, i have create many Folders and sub Folders for my music (sample : House/march2010/House Club)
    This tree is very important for me and i need to conserve this on Hard drive Mac in the same place.
    I Want copy the same tree on Itunes but if i create that myself, it's to long !!
    Help me please !
    (arborescence in french, tree in english)

    iTunes doesn't have any automatic way of re-creating your directory structure in terms of folders and playlists in iTunes.   You will have to drag each music folder to a playlist and then arrange these in folders inside of iTunes (which I warn you can can slow down iTunes a lot).   I guess the once chance of speeding this up will be if somebody has written an Applescript to do it, but I don't remeber seeing any anywhere.

  • How to download a file from the net and save it into .txt format in a datab

    Can some one show me a tutorial on how to download a file from the net and save it into .txt format in a database?
    Thank you,

    http://java.sun.com/docs/books/tutorial/networking/urls/readingWriting.html

Maybe you are looking for

  • Nokia Belle FP1 Pros and Bugs.

    I have FP1 installed  on my 701. I must say this update is significant improvement from the old belle in terms of features and functionality. I'm happy that Nokia solved most of the problems that I have mentioned earlier. /t5/Nseries-and-Symbian-Smar

  • Very simple CSS problem - ive given up :(

    please help a brother out:( im desinging a page with 3 separate HTML files, and a PHP file calling them. problem: i cannot get rid of 1px space in top margin :( i have tried everything ps! top-margin: -1px doesnt work my website link: http://www.heat

  • Saving copies of email as PDF or Pages/Word documents

    I have to save certain emails that I receive and keep them as a permanent record, as a PDF, Word etc...file. It needs to be something that others can view with a PC. I have been using Google to download my emails as a PDF, then save them to my PC but

  • HT5654 Help

    I just bought music from iTunes and its on my phone but it wont play. Its showing up on my phone in all grey lettering. What am I doing wrong?? And how do I get the music onto my iPod?

  • MS Outlook 2010 calendar

    I synced my calendars on devices, now my work calendar from Outlook is on my personal devices.  Can I remove it and just have my work calendar in Outlook instead of having it and iCloud?