An external hdd for storage, which format should I use?

I want to format an external hard disc drive for storing photos, videos and documents.
Which is the best format to use, from the choices available?
Thanks Doug

If you are going to use it only with a Mac, OS X extended (journaled) is best. If you want to use it with a Windows computer as well, there are other options. http://guides.macrumors.com/Formatting_an_External_Device

Similar Messages

  • Audio files taking up too much room- which format should I use?

    I bought a 32GB iphone so that I would be able to put a decent amount of music on it, but it seems to be eating the memory space. Itunes says I have 2GB of audio, but I only have 214 tracks (average 3-4 minute songs). Compared to my Creative Zen player the files are three times the size, and I can't tell much differece in the audio quality, so it seems a bit ridiculous. Is this something to do with Apple plus, and please can anyone recommend which format will give me decent quality music without taking up so much space? I'm guessing I'll have to delete the old files from itunes and copy them again in a different quality?
    Message was edited by: Jai.

    Go to the Summary Tab with the iPhone connected, and select the 'convert to 128 mbps' option, that will reduce the files size automatically for you when music is loaded on the iPhone. No need to delete the music from the iPhone first.

  • Flip Camera files in FCP. Which format should I use?

    hi Everyone!
    I own a flip camera which gives me mp4 files 1280x720.
    I does not seem to work fine with FCP.
    I would like to convert them. What is the best format to use in FCP if I want to keep the 1280x720 format without to much quality loss?
    Thank you very much.

    Yes. I have the file on my hardrive.
    Again the format is as follows.
    Mpeg 4, 1280*720, 30 mbps.
    I have the free software Mpeg streamclip to convert them in any format I want.
    As I am a newbie I do not know which one to choose.
    I just want to stick to 1280*720 and work as smoothly as possible in FCP without to much quality loss.

  • I worked with files in LR that were originally on my C drive, then were moved to an external HD for storage. I now want to do some more work on those files (which have the same file name as on the C drive). I plugged the drive into my computer and it show

    I worked with files in LR that were originally on my C drive, then were moved to an external HD for storage. I now want to do some more work on those files (which have the same file name as on the C drive). I plugged the drive into my computer and it shows in LR under folders as the F drive and the little green light is on, but LR is showing only the first 6 files and not the remaining 200 or so. How do I expand the F folder to expose all files?

    I worked with files in LR that were originally on my C drive, then were moved to an external HD for storage. I now want to do some more work on those files (which have the same file name as on the C drive). I plugged the drive into my computer and it shows in LR under folders as the F drive and the little green light is on, but LR is showing only the first 6 files and not the remaining 200 or so. How do I expand the F folder to expose all files?

  • Which audio format should I use on my memory stick?

    Hi. My car has a Clarion HDD Navigation System MAX575 which is compatible with audio CDs and has a memory stick slot. I can't play MP3 CDs. Which file format should i use if I want to load music onto the HDD using a memory stick? I don't want to remove the unit.

    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    1. Install the Apple Boot Camp software. Purchase Windows XP w/Service Pak 2 or Vista. Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows. Boot Camp enables you to boot the computer into OS X or Windows.
    2. Parallels Desktop for Mac and Windows XP, Vista Business, or Vista Ultimate. Parallels is software virtualization that enables running Windows concurrently with OS X.
    3. VM Fusionand Windows XP, Vista Business, or Vista Ultimate. VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    4. CrossOver which enables running many Windows applications without having to install Windows. The Windows applications can run concurrently with OS X.
    5. VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris. It is not yet fully developed for the Mac - some features are not yet implemented - but it does work otherwise.
    6. Last is Q. Q is a freeware emulator that is compatible with Intel Macs. It is much slower than the virtualization software, Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc. There are performance differences between dual-boot systems and virtualization. The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system.
    See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion.
    Boot Camp is only available with Leopard. The Boot Camp Beta that was used with Tiger has expired and is no longer available for use. So contrary to the other poster's comment, Boot Camp isn't truly "free." You must purchase Leopard to get it.

  • Using an ipod as an external HDD for the MBA and also as an ipod

    I have 120gb of media that I would like to carry on an ipod which I then connect to an MBA.
    Is it possible for the MBA to use the ipod as an external HDD to store media on, and also use the ipod as an ipod?

    With the exception of the iPod Touch and iPod Shuffle, yes. See:
    http://docs.info.apple.com/article.html?artnum=61131

  • Which listener should be used for JTextArea

    Hi,
    I need to add a listener for JTextArea particualy when
    the text in the jtextarea is changed. I don't think
    mouse listener is enough, since the user can use tab to
    get to the jtextarea and edit the text. In this case,
    which listener should I use. Sample code would be
    helpful.
    In addition, I have a problem with the jtextarea that
    when user uses tab to go to different gui components,
    such as jtextfield, jcombobox, jtextarea, jlist, etc, the
    tab stays in the jtextarea and keeps appending to it. It does
    not go to next component, such as jlist. How can I make it
    work?
    Thanks in advance,
    Pin

    It doesn't work. Are you using 1.4 or 1.3? I am using
    1.4.
    In the 1.4 API, it says that isManagingFocus is
    "Deprecated".
    Here is what I have:
    JTextArea descrptArea = new JTextArea() {
    public boolean isManagingFocus() {
    return false;
    descrptArea.setRows(3);
    descrptArea.setLineWrap(true);
    descrptArea.addKeyListener(new KeyAdapter() {
    public void keyTyped(KeyEvent e) {
    // DO SOMETHING
    I found the following code which says it will do it.
    However, I got the exeception:
    java.lang.ClassCastException:
    n: javax.swing.KeyStroke
    at java.util.TreeMap.compare(TreeMap.java:1081)
    at java.util.TreeMap.put(TreeMap.java:459)
    at java.util.TreeSet.add(TreeSet.java:205)
    Set forwardTraversalKeys = new TreeSet();
    forwardTraversalKeys.add(KeyStroke.getKeyStroke('\t'));
    forwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEven
    .VK_TAB,
    InputEvent.CTRL_MASK));
    textArea.setFocusTraversalKeys
    (KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
    forwardTraversalKeys);
    Set backwardTraversalKeys = new TreeSet();
    backwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEve
    t.VK_TAB,
    InputEvent.SHIFT_MASK));
    backwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEve
    t.VK_TAB,
    InputEvent.SHIFT_MASK |InputEvent.CTRL_MASK));
    textArea.setFocusTraversalKeys(
    KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,
    backwardTraversalKeys);
    Any idea???
    PinI'm not using 1.4 but the class cast exceptions look like they come from : Set forwardTraversalKeys=new TreeSet() etc
    try : TreeSet forwardTraversalKeys=new TreeSet()
    you cant cast from a Set to a TreeSet because a TreeSet is a Set but a Set is NOT a TreeSet.
    hope this helps.

  • Recommended external HDD for MacBook Pro 2011 15"?

    Hello,
    I'm looking for external HDD for new MacBook Pro 2011 15". Is there any external HDD available with Thunderbolt port? Any recommended HDD using FireWire 800 port?
    Since this is m first Mac, I'm not much familiar with Mac Accessories. Any further info would be greatly appreciated.
    Thanks.

    That's a good drive, but not as great as those based on 3.5" hard drives. The nice thing about buying that drive is you can swap your hard drive in your MacBook Pro with the one in that case. 3.5" hard drives as desktop hard drives typically are faster, and are more suited to a desk environment. 2.5" hard drives are great for portable use. Be sure to get the DC in adapter for it to plug in the wall. There may be times you don't have enough power on the computer to keep it up.

  • HT3669 which driver should i use for the epson LX300 matrix-dot printer??

    which driver should i use for the epson LX300 matrix-dot printer??? I dowloaded all drivers for epson but i didn't find the driver for the LX300.
    I bought an i mac not so long ago, can anyone help me about this?

    i use parallels desktop 7 because i use a program for work with windows XP. Is there really no solution?

  • External HDD for an Ipad?

      Does anyone have any recommendations for an external HDD for an Ipad?
    Also what will be better Wifi or bluetooth?
    Thanks DeXTeR

    Best way to do that is to download the movies on your computer. Then when you want them sync them over to the Ipad(before traveling). Thats what I do. Its the fastest way.
    You could store the movies or all of Itunes on an external HD. To save room on your computer(if thats getting full). Just move the Itunes files to your external. Then downloaded movies from the computer will save there.
    So its back to either from your computer or downloading from the "Cloud". Only thing again the HDD is going to do is save room on your computer if you have alot of movies. Apple Tv streams, so thats no help in this case.

  • I want to format my hard drive so i can have files bigger than 4GB what format should I use?

    I have a new hard drive that I want to format so it will work with both mac and PC (windows) but I have files that are bigger than 4GB, what format should I use?
    It needs to work with both PC and mac because I need to go between two computers etc

    If both of these computers are connect to the same router, both are in your home or place of work (Both are in the same location), it is very easy to Network them so you don't have to use DropBox or the external drive to share files between them.
    MickAUS2012 wrote:
    yea thanks for that,  i have drop box so i use that for some of my smaller files. Im just new to the mac so this is all a learning experince thanks for all your help everyone!

  • I am a student and need to do my assignments in word. Which application should I use as I have to save all of them in older word version like 2003 to send it to my teacher?

    I am a student and need to do my assignments in word. Which application should I use as I have to save all of them in older word version like 2003 to send it to my teacher?

    You could use Microsoft Office for Mac, but I would recommend iWork! It's a better set of applications for a much better price. I have used both and I prefer it over Office. And Pages can not only open Word documents, you can also save documents in Word format. My brother and I both used iWork as an Office substitute when we were in college (I graduated a few years ago and he just graduated last night) and haven't had any compatibility issues. Check it out here http://www.apple.com/iwork/

  • HT4059 Which format does ibooks use?

    Which format does ibooks use?

    if you follow iLife's intended workflow, I don't see any of the huzzle you mention (?)....:
    a) iM is for miniDV.. it copies (=lossless transfer) from miniDV... there's no conversion, as long as you use SD, not HiDef.. and it is NOT intended to import 'foreign' containers as avi...
    b) as long as the iM project is located in the 'Movies' folder, there's no export/conversion/whatever... needed. iDVD detects any content there automatically, with a snap of a click ...
    c) to create a standard videoDVD, there HAS to be a time consuming encoding process, 'cause these standards asks for muxxed mpeg2.. = computation... and, with your help (=maintain system, keep min. 20GB free on system disk, size of your wallet for purchasing überMac etc), this process is fast. plus, using the themes, or using a self-created theme gives your DVDs a professional touch ...
    Plan B)
    get any HDD/DVD standalone corder (I'm using one...); import from camera, the encoding & burning process is on such machines hardware accelerated.. it creates a DVD of a 90min movie in less than 5min .. (import, for sure, in realtime...); plus those devices offers rural editing options.. the DVD menus are ugly..

  • I have down loaded Aurora,Beta4,firefox. Which one should i use

    I have down loaded Aurora,Beta4,and Firefox. Which won should i use.'

    That is up to you to decide. For some details about the different versions see https://developer.mozilla.org/devnews/index.php/2011/04/07/new-development-channels-and-repositories-for-rapid-releases/
    If you have not used to testing software you should stick with the release version (Firefox 4.0.1).

  • Which CPU should I use

    Hello,
    our company want to buy new computers for the developers.
    We have to use Windows XP as our OS because of third party products.
    We develop J2SE + J2EE.
    So my question:
    Which CPU should we use?
    I searched at google but didn't found any usefull sides about benchmarking an J2SE VM or J2EE VM.
    Intel or AMD?
    Are there some issues to be regarded?
    Is the behavior of the VM different if you use an Intel or an AMD? (X86)
    Our AppServer is JBoss 3.2.3.
    Has Intel ore AMD some magic improvements for the SUN Java VM?
    Any answer would be appreciated.
    Thanks,
    Oliver

    Olli_ger,
    Thanks for asking. To add more to the question, what about dual- and
    multi-processors, such as Opteron 2xx and 8xx processors?
    That is, can, and to what extent, does the Java compiler and the JVM
    utilize multi-processors? And how is this done? Threads parceled out?
    Using what algorithms? Are there "best practices" for writing code
    that can exploit these chips?
    Given the recent emergence of dual-core processors from both AMD and
    Intel I would think Sun would have a white paper on this, but I've not
    been able to find anything.
    As I'm about to build a new system, and am looking at a dual processor
    board that could take two dual-core chips, I'd really like to know.
    Thanks again for opening the issue.
    -BC

Maybe you are looking for

  • IWeb won't open and other related problems ....

    I saw other posts regarding this but not sure if there is a fix that works. I worked in iWeb all day yesterday. This morning, I cannot open iWeb 08. When I try, it says "iweb can't open "xxxx.html" file" (this is a file I created yesterday) So I sear

  • Re: How to display Graphical objects over streaming video images??

    Hi, have you figured this out yet and if so, what is the answer?

  • Radio buttons in function module.

    Hi, I have developed a function module which internally calls abap report with SUBMIT command.  However, the abap report has radio buttons on selecton screen.  So I would like to know how to define radio buttons in function module or is there any alt

  • ITunes music library on iPod

    I don't really need to have my music on two places: iTunes Library and iPod. iPod should be enough. But a lot of services and views are available in Library. So what if I put my entire Library to my iPod? It works! But in that case the music consumes

  • Commercial invoice number and Goods receipt Material document

    Hello, Can any one guide me for the following... we need to develop a report where we need to track the For each good reciept number the corresponding invoice number... Thanks Raheem