Accessing audio file directories more easily

Is there a way to access audio files like foley or music files more easily. Currently I locate files in the finder and drag into the FCP browser window, but would like to have a way to see the various folders in one place. Is this doable, or is there a better way to do this?

Meg The Dog wrote:
Hi =
At the finder level, just use QuickLook.
Select the file. Press the spacebar. If is is an audio file it will play, an image it will display, or a movie it will play as well.
You can use this to sample your files and preselect and screen those you want to drag into the FCP browser.
MtD
Thanks for the feedback. I had hoped there was a way FCP could allow adding folders like Motion's file browser. I know I can add the four or five folders (where I have audio content of interest) to the Finder's Places Sidebar, and sample the audio as you said, but hoped there was a way to do this from within FCP file browser, or access via a right mouse click. I am setting up a Macbook as a mobile editing station, so had hoped there was a way to view and select content without having another window (finder) up. It's less cumbersome of a process with a single monitor system.

Similar Messages

  • My music library is too large for my iPad.  If I use the cloud, will I still be able to access audio files or does it all end up having to be saved on my iPad?  In other words...am I limited to the space on my iPad memory?

    Do I still need to have enough space on my iPad for my whole music library?  Seems like I must be missing something...why would I want to be limited by the memory space on my mobile device?  Is there another way to share audio files between my computer and my iPad other than iTunes?

    It depends on whihch IPad you purchased. The 16GB, the 32GB, or the 64GB for storage.
    Tap Settings > General > About. You'll see Capacity in the list.
    How Mac OS X and iOS report storage capacity
    You get 5GB of free storage space with iCloud but you can purchase more if necessary.
    Apple - iCloud - Learn how to set up iCloud on all your devices
    If you setup an iCloud account, it won't be necessary to sync your iPad media with iTunes. Everything is synced via your Wi-Fi network with iCloud.
    If you do not want to use iCloud for storage and syncing, iTunes is the only software you can use to sync iTunes media with an iOS device.

  • I can't preview audio files any more

    Hi all
    I used to be able to preview an audio file in a finder window. It showed as a black icon with a play button in it .
    This option has disappeared !
    any ideas?
    help always appreciated
    G

    You show as running 10.6.7 - have you not updated to 10.6.8?
    by the way quicktime player 10.0 (131). Not sure if that's relevant
    Nor am I, but:
    Mac OS X 10.6 includes QuickTime versions 10.0 and 7.6.3. The QuickTime 7 player will only be present if a QuickTime Pro key was present at the time of installation, or if specified as part of a custom install, or individually downloaded:
    http://support.apple.com/kb/dl923
    Snow Leopard update 10.6.4 included an update to 7.6.6 (if installed). You can install it from the above link  even though it says for 10.6.3. It's the same version of QuickTime Player 7.6.6.
    (Only QuickTime Player 7.6.3 or 7.6.6 can be updated to "Pro".)
    A Mac OS X v10.6, OS X Lion, and OS X Mountain Lion-compatible version of QuickTime Player 7 is available for use with older media or with AppleScript-based workflows. QuickTime Player 7 can be used to playback formats such as QTVR, interactive QuickTime Movies, and MIDI files. Also, it supports QuickTime 7 Pro registration codes for access to QuickTime Pro functionality.
    How to install Quicktime Player 7 on Snow Leopard, Lion and Mountain Lion when it is not already present:
    http://support.apple.com/kb/HT3678?viewlocale=en_US&locale=en_US

  • Splitting audio files of more than 2 gigabytes

    Hi,
    I've a huge audio file I want to split. Is there any kind of utility that let me complete this task?
    Thanks in advance for your help.
    Regards.

    What format audio file? 2GB is very large for audio and my experience (albeit with older computers) is programs tend to baulk at things that large.
    Audacity is a freeware program. The problem you may encounter is if the audio is in some compressed format a utility might want to uncompress it to open it and then recompress it to save it. This double compression will result in quality loss. This is why I asked about format.

  • How can I access my files one more time?

    I am using OS X 10.4 on PowerBook G4.
    I did something very wrong. I right clicked on my actual hard drive then “Get info” then I tried to do some changes. On the very bottom of that menu I saw an option calls Access, so I changed it to admin then pressed enter and suddenly everything is gone. Now when I turn my laptop ON, all I see is Mac’s beautiful blue background and my mouse pointer and nothing else.
    Could anyone help me please?
    Thanks
    PowerBook G4 Mac OS X (10.4.8)
    PowerBook G4   Mac OS X (10.4.8)  

    Follow the first set of instructions in this FAQ.
    (17150)

  • Accessing a file and more.

    Hi, I have an encrypted text file. I need to do the following things within my program to make it useful.
    1. Read the rather large 3.2MB file.
    2. Decrypt the file, it is a simple translation of A = F, B = O etc.
    3. Put each word into an ArrayList<String>.
    I'm not sure where to start and this has been a bit of a stumbling block for me.

    you might find read() useful.
    package krc.utilz.io;
    import java.util.Collection;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.io.File;
    import java.io.FileReader;
    import java.io.BufferedReader;
    import java.io.FileWriter;
    import java.io.PrintWriter;
    import java.io.InputStream;
    import java.io.FileInputStream;
    import java.io.Closeable;
    import java.io.IOException;
    import java.io.FileNotFoundException;
    * @class: krc.utilz.io.Filez
    * A collection of static "file handling" helper methods.
    public abstract class Filez
      public static final int BFRSIZE = 4096;
       * reads the given file into one big string
       * @param String filename - the name of the file to read
       * @return the contents filename
      public static String read(String filename)
        throws IOException, FileNotFoundException
        FileReader in = null;
        StringBuffer out = new StringBuffer();
        try {
          in = new FileReader(filename);
          char[] cbuf = new char[BFRSIZE];
          int n = in.read(cbuf, 0, BFRSIZE);
          while(n > 0) {
            out.append(cbuf);
            n = in.read(cbuf, 0, BFRSIZE);
        } finally {
          if(in!=null)in.close();
        return out.toString();
      * a pseudonym for read especially for perl programmers
      public static String slurp(String filename)
        throws IOException, FileNotFoundException
        return(Filez.read(filename));
       * (re)writes the given content to the given filename
       * @param String content - the new contents of the fil
       * @param String filename - the name of the file to write.
      public static void write(String content, String filename)
        throws IOException
        PrintWriter out = null;
        try {
          out = new PrintWriter(new FileWriter(filename));
          out.write(content);
        } finally {
          if(out!=null)out.close();
      * a pseudonym for write especially for perl programmers
      public static void splooge(String content, String filename)
        throws IOException, FileNotFoundException
        Filez.write(content, filename);
       * reads each line of the given file into an array of strings.
       * @param String filename - the name of the file to read
       * @return a fixed length array of strings containing file contents.
      public  static String[] readArray(String filename)
        throws IOException, FileNotFoundException
        return readList(filename).toArray(new String[0]);
       * reads each line of the given file into an ArrayList of strings.
       * @param String filename - the name of the file to read
       * @return an ArrayList of strings containing file contents.
      public static ArrayList<String> readArrayList(String filename)
        throws IOException, FileNotFoundException
        return (ArrayList<String>)readList(filename);
       * reads each line of the given file into a List of strings.
       * @param String filename - the name of the file to read
       * @return an List handle ArrayList of strings containing file contents.
      public static List<String> readList(String filename)
        throws IOException, FileNotFoundException
        BufferedReader in = null;
        List<String> out = new ArrayList<String>();
        try {
          in = new BufferedReader(new FileReader(filename));
          String line = null;
          while ( (line = in.readLine()) != null ) {
              out.add(line);
        } finally {
          if(in!=null)in.close();
        return out;
       * reads the whole of the given file into an array of bytes.
       * @param String filename - the name of the file to read
       * @return an array of bytes containing the file contents.
      public static byte[] readBytes(String filename)
        throws IOException, FileNotFoundException
        return( readBytes(new File(filename)) );
       * reads the whole of the given file into an array of bytes.
       * @param File file - the file to read
       * @return an array of bytes containing the file contents.
      public static byte[] readBytes(File file)
        throws IOException, FileNotFoundException
        byte[] out = null;
        InputStream in = null;
        try {
          in = new FileInputStream(file);
          out = new byte[(int)file.length()];
          int size = in.read(out);
        } finally {
          if(in!=null)in.close();
        return out;
       * do files A & B have the same contents
       * @param String filenameA - the first file to compare
       * @param String filenameA - the second file to compare
       * @return boolean do-these-two-files-have-the-same-contents?
      public static boolean isSame(String filenameA, String filenameB)
        throws IOException, FileNotFoundException
        File fileA = new File(filenameA);
        File fileB = new File(filenameB);
        //check for same physical file
        if( fileA.equals(fileB) ) return(true);
        //compare sizes
        if( fileA.length() != fileB.length() ) return(false);
        //compare contents (buffer by buffer)
        boolean same=true;
        InputStream inA = null;
        InputStream inB = null;
        try {
          inA = new FileInputStream(fileA);
          inB = new FileInputStream(fileB);
          byte[] bfrA = new byte[BFRSIZE];
          byte[] bfrB = new byte[BFRSIZE];
          int sizeA=0, sizeB=0;
          do {
            sizeA = inA.read(bfrA);
            sizeB = inA.read(bfrB);
            if ( sizeA != sizeB ) {
              same=false;
            } else if ( sizeA == 0 ) {
              //do nothing
            } else if ( !Arrays.equals(bfrA,bfrB) ) {
              same=false;
          } while (same && sizeA != -1);
        } finally {
          if(inA!=null)inA.close();
          if(inB!=null)inB.close();
        return(same);
       * checks the given filename exists and is readable
       * @param String filename = the name of the file to "open".
       * @param OPTIONAl String type = a short name for the file used to identify
       *  the file in any exception messages.
       *  For example: "input", "input data", "DTD", "XML", or whatever.
       * @return a File object for the given filename.
       * @throw FileNotFoundException if the given file does not exist.
       * @throw IOException if the given file is unreadable (usually permits).
      public static File open(String filename)
        throws FileNotFoundException, IOException
        return(open(filename,"input"));
      public static File open(String filename, String type)
        throws FileNotFoundException, IOException
        File file = new File(filename);
        String fullname = file.getCanonicalPath();
        if(!file.exists()) throw new FileNotFoundException(type+" file does not exist: "+fullname);
        if(!file.canRead()) throw new IOException(type+" file is not readable: "+fullname);
        return(file);
       * gets the filename-only portion of a canonical-filename, with or without
       * the extension.
       * @param String path - the full name of the file.
       * OPTIONAL @param boolean cutExtension - if true then remove any .ext
       * @return String the filename-only (with or without extension)
      public static String basename(String path) {
        return(basename(path,false));
      public static String basename(String path, boolean cutExtension)
        String fname = (new File(path)).getName();
        if (cutExtension) {
          int i = fname.lastIndexOf(".");
          if(i>0) fname = fname.substring(0,i);
        return(fname);
       * gets the directory portion of a canonical-filename
       * @param String path - the full name of the file.
       * @return String the parent directory of the given path.
      public static String dirname(String path)
        return( new File(path).getParent() );
       * close these "streams"
       * @param Closeable... "streams" to close.
      public static void close(Closeable... streams) {
        for(Closeable stream : streams) {
          if(stream==null) continue;
          try {
            stream.close();
          } catch (Exception e) {
            System.err.println(e);
    }

  • Crap! I can't access audio files on my wife's profile!  Can you help?

    My wife purchased an audiobook of some sort from a website. It's now stored in our shared iTunes library. However, I can't get the files to appear when I'm logged in with my own profile. I already did the "Add to Library" option which is what I usually use to pull in songs that she burns from CDs while in her own profile.
    Do you know why iTunes won't let me do this?
    Thanks!

    I figured it out.

  • The audio file is not recognized by Logic. Can't import audio files?

    Hi,
    The audio files are on my desktop. Logic 9.1.1 will not recognize them and gives me this message when I try to drag and drop OR Import Audio File OR use Audio Bin.
    As far as I know, I am using wave files (extension .wav). So what could be the problem. Here's a picture of how the files look on my desktop.
    The regular silver and blue iTunes icons look like this when I Get Info:
    The black iTunes icons look like this when I Get Info:
    Importantly, the black iTunes (only 2 out of the 18 audio files) are the ones that actually import. Does it have something to do with the fact that it shows under "More Info > Audio Channels 1" vs. the silver and blue iTunes .wav files (which do NOT have this)?
    Furthermore, here is the process I used to get the audio files in the first place. On my PC, I exported audio files from my Ableton Live project onto a thumbdrive. I copied the audio files from my thumbdrive to my Mac. Maybe this had something to do with it.
    Also, as you can see, under Sharing and Permissions > there is only "read and write" for all names, so it's not a permissions thing.
    Thanks.

    Thanks for your reply.
    +Can you play them as Preview (select in Finder, hit spacebar)?+ No. The black iTunes icons play with no sound and the silver and blue iTunes icons do not even come up in Preview at all.
    +Will iTunes play them?+ Only the black iTunes files (2 out of the 18). When I click on a silver and blue icon'd file, it will not even open in iTunes.
    why on the desktop? it was just a temporary thing. I was not able to pull them into my Audio Bin. I tried what you suggested. I put the files in the Audio Files folder of my project. When I go to open them from within Logic by Import Audio File, they are visible but greyed out. I don't use the desktop except for testing stuff like you do.
    +How was the thumb drive formatted? FAT32 or other DOS-format, or Mac OS Extended (HFS)?
    +the extension is not where apps look to recognize an audio file format, it is the header data. Some audio programs can read RAW audio files, but more about that after your reply to this one.+ It is formatted MS-DOS (FAT 32).
    (*I wrote all this stuff above while I was working and waiting for the PC to write to my thumbdrive again*******finally I got everything to show up.
    I loaded the files again from the thumbdrive. This time they were all in the black iTunes format, and I put them directly in the Audio Files folder like you suggested. After some doing everything works fine. Weird.
    Thanks!

  • How do I compress an audio file?

    Hello,
    This is definitely an overloaded home page, but I am doing what I am told. I am working on making some of the images smaller for speed.
    http://www.peterspunch.com/
    My problem is that the audio works fine on my computer on Safari, but gets cut off on Flock and Firefox. Would a different audio file be more universal to browsers? Or is this just an overload problem? Or should I compress the audio file - its 4MB?
    Diloretta

    The audio file I see is 745 Kb, which is still a little large for a file being forced on your visitors. You could reduce the sample rate from 44100Hz and/or the bitrate from 128 kb/s.
    Is that Jimmy Buffet? Do you have clearance/license to use the music?
    You've also got some odd slicing of your images. More judicious use of transparent GIF or PNG files may be useful.

  • Merging two or more audio files, by a contextual menu item within the finder

    Hello, everyone,
    I want to merge or concatenate two or more simple audio files (wavs at the same sample rate and bit depth) into a new wav file - which don't need any conversion. I want to do this using a contextual menu service within the finder. Is there any possibility to do this? I can't find any software in the market that will allow me to do this.
    so that,
    'start.end_1.wav' + 'start.end_2.wav' + 'start.end_3.wav' = 'start.end_1&start.end_2&start.end_3.wav'
    Can anyone help? would sox help me with this, and if so, how to add it onto a finder contextual menu?

    Both of those directories are empty and I have deleted them and re-created them. I have been able to add and remove plugins for other applications so this is very strange.
    Using "Easy Find" I did locate a preference file, which I have deleted but that has not resolved it. I have tried safe mode and single user mode but no luck. I couldn't find any automator actions either.
    When I click on the menu item it says "ClamXav is not installed. Please install ClamXav and try again" so it knows it needs to use this program somehow.
    It's very odd and must be a result of a crash I had, though I would love to get to the bottom of it, it isn't serious and will hopefully go when I upgrade to Snow Leopard
    Thanks for your help though as it has taught me a few things!

  • I can not install the 'attach files more easily' facility in my yahoo email. Is this because I now have the latest version of Firefox? I had it on my previous version.

    To send photos I need the 'attach files more easily' facility in my Yahoo email. After I recently upgraded my broadband so that I now get 37mb speed, Firefox (and Internet Explorer) started to 'not respond' so I un-installed it then re-installed it. I got the latest version of Firefox and now I can't get the facility back again. Have you got any suggestions? Yahoo have not been able to help.

    I could only find this link, hoping it will work:
    Network.ftp.idleConnectionTimeout
    * http://kb.mozillazine.org/Network.ftp.idleConnectionTimeout
    Check and tell if its working.

  • Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. W

    Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. What shall I do?

    Alauda_positos I would recommend reviewing your installation log files to determine the exact directory which the installer is unable to access.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors discovered to this discussion.
    For information on how to adjust file permissions please see Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.

  • I'm running logic pro 8.0.2 on Leopard 10.5.8. I've recorded an evening of live music, the cut the recording into songs using one audio file folder. When working on an individual song, I can't access the sampler.  I get the message "nothing to display"

    I'm running logic pro 8.0.2 on Leopard 10.5.8. I've recorded an evening of live music, then cut the recording into songs using one audio file folder ad multiple song files. When working on an individual song, I can't access the sampler.  I get the message "nothing to display" or "no region or audio file selected"  After much research on the web, I believe this is a permanent bug.  Does anyone have a good work-around for this type of work.  We record live 16T band rehearsals constantly and would love to be able to break individual songs out of the large file and be able to use the sampler.  Thanks in advance for your ideas!  Cheers.

    Another thing - if I copy one of the tracks to another track, then the sample editor works on the copied track.  I don't want to have to copy 16 tracks to new tracks to be able to use the sample editor on a project.  Thanks again.

  • Am I able to use more than 1 audio file in IDVD?

    Am I able to use more than 1 audio file in my IDVD project? I want to have different songs in my subtitles.

    Yes.  Each menu had an info/settings page that you can add a different audio track to:
    When you add a track to a menu the the playing time should be set to 30 seconds or 1 minute.  If you leave it at the full lenght that full length will apply towards the 15 minutes total allowed for all menus.
    OT

  • More than one loop in audio file

    Please, allow more than one loop in a wave file. This functionality was present in the Adobe Audition 3.0, but it is gone now. The sampler tab is gone from the metadata. Please, bring it back. Even though, the user can set more than one region marker in the wave file, only one of them is internally set to be understood as a loop and there is no way how to set more loops in a wave file. Please add this functionality back into the Audition.

    Only one audio file can be used in a Lightroom slideshow.
    You'll have to combine multiple songs into a single audio file (e.g. using Audition) then use the single audio file in the Lightroom slideshow.
    For more flexibility, you can use commercial software such as ProShow Web, Gold or Producer which comes with a free Lightroom plugin
    ProShow Gold - Create Fast and Fun Photo Slideshows
    ProShow Web - Instant Photo and Video Slideshows from your Mac or PC
    Plug-ins for ProShow

Maybe you are looking for